A low-level client representing AWS Global Accelerator
This is the Global Accelerator API Reference . This guide is for developers who need detailed information about Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the Global Accelerator Developer Guide .
Global Accelerator is a service in which you create accelerators to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits.
By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the Amazon Web Services global network.
For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you can use application logic to directly map one or more users to a specific endpoint among many endpoints.
Warning
Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify --region us-west-2
on AWS CLI commands.
By default, Global Accelerator provides you with static IP addresses that you associate with your accelerator. The static IP addresses are anycast from the Amazon Web Services edge network. For IPv4, Global Accelerator provides two static IPv4 addresses. For dual-stack, Global Accelerator provides a total of four addresses: two static IPv4 addresses and two static IPv6 addresses. With a standard accelerator for IPv4, instead of using the addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring toGlobal Accelerator (BYOIP).
For a standard accelerator, they distribute incoming application traffic across multiple endpoint resources in multiple Amazon Web Services Regions , which increases the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses that are located in one Amazon Web Services Region or multiple Amazon Web Services Regions. For custom routing accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that are virtual private cloud (VPC) subnets.
Warning
The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Tag-based policies .
For standard accelerators, Global Accelerator uses the Amazon Web Services global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is always directed to healthy endpoints.
For more information about understanding and using Global Accelerator, see the Global Accelerator Developer Guide .
client = session.create_client('globalaccelerator')
These are the available methods:
Associate a virtual private cloud (VPC) subnet endpoint with your custom routing accelerator.
The listener port range must be large enough to support the number of IP addresses that can be specified in your subnet. The number of ports required is: subnet size times the number of ports per destination EC2 instances. For example, a subnet defined as /24 requires a listener port range of at least 255 ports.
Note: You must have enough remaining listener ports available to map to the subnet ports, or the call will fail with a LimitExceededException.
By default, all destinations in a subnet in a custom routing accelerator cannot receive traffic. To enable all destinations to receive traffic, or to specify individual port mappings that can receive traffic, see the AllowCustomRoutingTraffic operation.
See also: AWS API Documentation
Request Syntax
response = client.add_custom_routing_endpoints(
EndpointConfigurations=[
{
'EndpointId': 'string'
},
],
EndpointGroupArn='string'
)
EndpointConfigurations (list) –
[REQUIRED]
The list of endpoint objects to add to a custom routing accelerator.
(dict) –
The list of endpoint objects. For custom routing, this is a list of virtual private cloud (VPC) subnet IDs.
EndpointId (string) –
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint.
dict
Response Syntax
{
'EndpointDescriptions': [
{
'EndpointId': 'string'
},
],
'EndpointGroupArn': 'string'
}
Response Structure
(dict) –
EndpointDescriptions (list) –
The endpoint objects added to the custom routing accelerator.
(dict) –
A complex type for an endpoint for a custom routing accelerator. Each endpoint group can include one or more endpoints, which are virtual private cloud (VPC) subnets.
EndpointId (string) –
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint.
Exceptions
Add endpoints to an endpoint group. The AddEndpoints
API operation is the recommended option for adding endpoints. The alternative options are to add endpoints when you create an endpoint group (with the CreateEndpointGroup API) or when you update an endpoint group (with the UpdateEndpointGroup API).
There are two advantages to using AddEndpoints
to add endpoints:
It’s faster, because Global Accelerator only has to resolve the new endpoints that you’re adding.
It’s more convenient, because you don’t need to specify all of the current endpoints that are already in the endpoint group in addition to the new endpoints that you want to add.
See also: AWS API Documentation
Request Syntax
response = client.add_endpoints(
EndpointConfigurations=[
{
'EndpointId': 'string',
'Weight': 123,
'ClientIPPreservationEnabled': True|False
},
],
EndpointGroupArn='string'
)
EndpointConfigurations (list) –
[REQUIRED]
The list of endpoint objects.
(dict) –
A complex type for endpoints. A resource must be valid and active when you add it as an endpoint.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID. A resource must be valid and active when you add it as an endpoint.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
dict
Response Syntax
{
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'EndpointGroupArn': 'string'
}
Response Structure
(dict) –
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
Exceptions
Advertises an IPv4 address range that is provisioned for use with your Amazon Web Services resources through bring your own IP addresses (BYOIP). It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services because of propagation delays.
To stop advertising the BYOIP address range, use WithdrawByoipCidr .
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.advertise_byoip_cidr(
Cidr='string'
)
Cidr (string) –
[REQUIRED]
The address range, in CIDR notation. This must be the exact range that you provisioned. You can’t advertise only a portion of the provisioned range.
dict
Response Syntax
{
'ByoipCidr': {
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
ByoipCidr (dict) –
Information about the address range.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Exceptions
Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that can receive traffic for a custom routing accelerator. You can allow traffic to all destinations in the subnet endpoint, or allow traffic to a specified list of destination IP addresses and ports in the subnet. Note that you cannot specify IP addresses or ports outside of the range that you configured for the endpoint group.
After you make changes, you can verify that the updates are complete by checking the status of your accelerator: the status changes from IN_PROGRESS to DEPLOYED.
See also: AWS API Documentation
Request Syntax
response = client.allow_custom_routing_traffic(
EndpointGroupArn='string',
EndpointId='string',
DestinationAddresses=[
'string',
],
DestinationPorts=[
123,
],
AllowAllTrafficToEndpoint=True|False
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
[REQUIRED]
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
DestinationAddresses (list) –
A list of specific Amazon EC2 instance IP addresses (destination addresses) in a subnet that you want to allow to receive traffic. The IP addresses must be a subset of the IP addresses that you specified for the endpoint group.
DestinationAddresses
is required ifAllowAllTrafficToEndpoint
isFALSE
or is not specified.
(string) –
DestinationPorts (list) –
A list of specific Amazon EC2 instance ports (destination ports) that you want to allow to receive traffic.
(integer) –
AllowAllTrafficToEndpoint (boolean) –
Indicates whether all destination IP addresses and ports for a specified VPC subnet endpoint can receive traffic from a custom routing accelerator. The value is TRUE or FALSE.
When set to TRUE, all destinations in the custom routing VPC subnet can receive traffic. Note that you cannot specify destination IP addresses and ports when the value is set to TRUE.
When set to FALSE (or not specified), you must specify a list of destination IP addresses that are allowed to receive traffic. A list of ports is optional. If you don’t specify a list of ports, the ports that can accept traffic is the same as the ports configured for the endpoint group.
The default value is FALSE.
None
Exceptions
Check if an operation can be paginated.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
True
if the operation can be paginated,
False
otherwise.
Closes underlying endpoint connections.
Create an accelerator. An accelerator includes one or more listeners that process inbound connections and direct traffic to one or more endpoint groups, each of which includes endpoints, such as Network Load Balancers.
Warning
Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify --region us-west-2
on AWS CLI commands.
See also: AWS API Documentation
Request Syntax
response = client.create_accelerator(
Name='string',
IpAddressType='IPV4'|'DUAL_STACK',
IpAddresses=[
'string',
],
Enabled=True|False,
IdempotencyToken='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
Name (string) –
[REQUIRED]
The name of the accelerator. The name can have a maximum of 64 characters, must contain only alphanumeric characters, periods (.), or hyphens (-), and must not begin or end with a hyphen or period.
IpAddressType (string) – The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
IpAddresses (list) –
Optionally, if you’ve added your own IP address pool to Global Accelerator (BYOIP), you can choose an IPv4 address from your own pool to use for the accelerator’s static IPv4 address when you create an accelerator.
After you bring an address range to Amazon Web Services, it appears in your account as an address pool. When you create an accelerator, you can assign one IPv4 address from your range to it. Global Accelerator assigns you a second static IPv4 address from an Amazon IP address range. If you bring two IPv4 address ranges to Amazon Web Services, you can assign one IPv4 address from each range to your accelerator. This restriction is because Global Accelerator assigns each address range to a different network zone, for high availability.
You can specify one or two addresses, separated by a space. Do not include the /32 suffix.
Note that you can’t update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
(string) –
Enabled (boolean) –
Indicates whether an accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, an accelerator cannot be deleted. If set to false, the accelerator can be deleted.
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of an accelerator.
This field is autopopulated if not provided.
Tags (list) –
Create tags for an accelerator.
For more information, see Tagging in Global Accelerator in the Global Accelerator Developer Guide .
(dict) –
A complex type that contains a Tag
key and Tag
value.
Key (string) – [REQUIRED]
A string that contains a Tag
key.
Value (string) – [REQUIRED]
A string that contains a Tag
value.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'DualStackDnsName': 'string',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
Accelerator (dict) –
The accelerator that is created by specifying a listener and the supported IP address types.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name for an accelerator is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
DualStackDnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to a dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses.
The naming convention for the dual-stack DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com.
Note: Global Accelerator also assigns a default DNS name, DnsName
, to your accelerator that points just to the static IPv4 addresses.
For more information, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Events (list) –
A history of changes that you make to an accelerator in Global Accelerator.
(dict) –
A complex type that contains a Timestamp
value and Message
for changes that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when you update an accelerator from IPv4 to dual-stack, or from dual-stack to IPv4. Global Accelerator stores a maximum of ten event messages.
Message (string) –
A string that contains an Event
message describing changes or errors when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Timestamp (datetime) –
A timestamp for when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Exceptions
Create a custom routing accelerator. A custom routing accelerator directs traffic to one of possibly thousands of Amazon EC2 instance destinations running in a single or multiple virtual private clouds (VPC) subnet endpoints.
Be aware that, by default, all destination EC2 instances in a VPC subnet endpoint cannot receive traffic. To enable all destinations to receive traffic, or to specify individual port mappings that can receive traffic, see the AllowCustomRoutingTraffic operation.
Warning
Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify --region us-west-2
on AWS CLI commands.
See also: AWS API Documentation
Request Syntax
response = client.create_custom_routing_accelerator(
Name='string',
IpAddressType='IPV4'|'DUAL_STACK',
IpAddresses=[
'string',
],
Enabled=True|False,
IdempotencyToken='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
Name (string) –
[REQUIRED]
The name of a custom routing accelerator. The name can have a maximum of 64 characters, must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) – The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
IpAddresses (list) –
Optionally, if you’ve added your own IP address pool to Global Accelerator (BYOIP), you can choose an IPv4 address from your own pool to use for the accelerator’s static IPv4 address when you create an accelerator.
After you bring an address range to Amazon Web Services, it appears in your account as an address pool. When you create an accelerator, you can assign one IPv4 address from your range to it. Global Accelerator assigns you a second static IPv4 address from an Amazon IP address range. If you bring two IPv4 address ranges to Amazon Web Services, you can assign one IPv4 address from each range to your accelerator. This restriction is because Global Accelerator assigns each address range to a different network zone, for high availability.
You can specify one or two addresses, separated by a space. Do not include the /32 suffix.
Note that you can’t update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
(string) –
Enabled (boolean) –
Indicates whether an accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, an accelerator cannot be deleted. If set to false, the accelerator can be deleted.
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
This field is autopopulated if not provided.
Tags (list) –
Create tags for an accelerator.
For more information, see Tagging in Global Accelerator in the Global Accelerator Developer Guide .
(dict) –
A complex type that contains a Tag
key and Tag
value.
Key (string) – [REQUIRED]
A string that contains a Tag
key.
Value (string) – [REQUIRED]
A string that contains a Tag
value.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
}
}
Response Structure
(dict) –
Accelerator (dict) –
The accelerator that is created.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
Exceptions
Create an endpoint group for the specified listener for a custom routing accelerator. An endpoint group is a collection of endpoints in one Amazon Web Services Region.
See also: AWS API Documentation
Request Syntax
response = client.create_custom_routing_endpoint_group(
ListenerArn='string',
EndpointGroupRegion='string',
DestinationConfigurations=[
{
'FromPort': 123,
'ToPort': 123,
'Protocols': [
'TCP'|'UDP',
]
},
],
IdempotencyToken='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener for a custom routing endpoint.
EndpointGroupRegion (string) –
[REQUIRED]
The Amazon Web Services Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
DestinationConfigurations (list) –
[REQUIRED]
Sets the port range and protocol for all endpoints (virtual private cloud subnets) in a custom routing endpoint group to accept client traffic on.
(dict) –
For a custom routing accelerator, sets the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
FromPort (integer) – [REQUIRED]
The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
ToPort (integer) – [REQUIRED]
The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
Protocols (list) – [REQUIRED]
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
(string) –
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
This field is autopopulated if not provided.
dict
Response Syntax
{
'EndpointGroup': {
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'DestinationDescriptions': [
{
'FromPort': 123,
'ToPort': 123,
'Protocols': [
'TCP'|'UDP',
]
},
],
'EndpointDescriptions': [
{
'EndpointId': 'string'
},
]
}
}
Response Structure
(dict) –
EndpointGroup (dict) –
The information about the endpoint group created for a custom routing accelerator.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
DestinationDescriptions (list) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
FromPort (integer) –
The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
ToPort (integer) –
The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
Protocols (list) –
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
(string) –
EndpointDescriptions (list) –
For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
A complex type for an endpoint for a custom routing accelerator. Each endpoint group can include one or more endpoints, which are virtual private cloud (VPC) subnets.
EndpointId (string) –
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
Exceptions
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.EndpointGroupAlreadyExistsException
GlobalAccelerator.Client.exceptions.ListenerNotFoundException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
GlobalAccelerator.Client.exceptions.InvalidArgumentException
GlobalAccelerator.Client.exceptions.InvalidPortRangeException
Create a listener to process inbound connections from clients to a custom routing accelerator. Connections arrive to assigned static IP addresses on the port range that you specify.
See also: AWS API Documentation
Request Syntax
response = client.create_custom_routing_listener(
AcceleratorArn='string',
PortRanges=[
{
'FromPort': 123,
'ToPort': 123
},
],
IdempotencyToken='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator for a custom routing listener.
PortRanges (list) –
[REQUIRED]
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
This field is autopopulated if not provided.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
]
}
}
Response Structure
(dict) –
Listener (dict) –
The listener that you’ve created for a custom routing accelerator.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Exceptions
Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one Amazon Web Services Region. A resource must be valid and active when you add it as an endpoint.
See also: AWS API Documentation
Request Syntax
response = client.create_endpoint_group(
ListenerArn='string',
EndpointGroupRegion='string',
EndpointConfigurations=[
{
'EndpointId': 'string',
'Weight': 123,
'ClientIPPreservationEnabled': True|False
},
],
TrafficDialPercentage=...,
HealthCheckPort=123,
HealthCheckProtocol='TCP'|'HTTP'|'HTTPS',
HealthCheckPath='string',
HealthCheckIntervalSeconds=123,
ThresholdCount=123,
IdempotencyToken='string',
PortOverrides=[
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
EndpointGroupRegion (string) –
[REQUIRED]
The Amazon Web Services Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.
EndpointConfigurations (list) –
The list of endpoint objects.
(dict) –
A complex type for endpoints. A resource must be valid and active when you add it as an endpoint.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID. A resource must be valid and active when you add it as an endpoint.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) – The port that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If listener port is a list of ports, Global Accelerator uses the first port in the list.
HealthCheckProtocol (string) – The protocol that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) – If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).
HealthCheckIntervalSeconds (integer) – The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
ThresholdCount (integer) – The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
This field is autopopulated if not provided.
PortOverrides (list) –
Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
dict
Response Syntax
{
'EndpointGroup': {
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'TrafficDialPercentage': ...,
'HealthCheckPort': 123,
'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS',
'HealthCheckPath': 'string',
'HealthCheckIntervalSeconds': 123,
'ThresholdCount': 123,
'PortOverrides': [
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
}
}
Response Structure
(dict) –
EndpointGroup (dict) –
The information about the endpoint group that was created.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) –
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) –
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) –
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) –
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) –
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
Exceptions
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.EndpointGroupAlreadyExistsException
GlobalAccelerator.Client.exceptions.ListenerNotFoundException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
GlobalAccelerator.Client.exceptions.InvalidArgumentException
Create a listener to process inbound connections from clients to an accelerator. Connections arrive to assigned static IP addresses on a port, port range, or list of port ranges that you specify.
See also: AWS API Documentation
Request Syntax
response = client.create_listener(
AcceleratorArn='string',
PortRanges=[
{
'FromPort': 123,
'ToPort': 123
},
],
Protocol='TCP'|'UDP',
ClientAffinity='NONE'|'SOURCE_IP',
IdempotencyToken='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of your accelerator.
PortRanges (list) –
[REQUIRED]
The list of port ranges to support for connections from clients to your accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
[REQUIRED]
The protocol for connections from clients to your accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
IdempotencyToken (string) –
[REQUIRED]
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
This field is autopopulated if not provided.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
],
'Protocol': 'TCP'|'UDP',
'ClientAffinity': 'NONE'|'SOURCE_IP'
}
}
Response Structure
(dict) –
Listener (dict) –
The listener that you’ve created.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
The protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
Exceptions
Delete an accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources (listeners and endpoint groups). To disable the accelerator, update the accelerator to set Enabled
to false.
Warning
When you create an accelerator, by default, Global Accelerator provides you with a set of two static IP addresses. Alternatively, you can bring your own IP address ranges to Global Accelerator and assign IP addresses from those ranges.
The IP addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them. As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Identity and access management in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.delete_accelerator(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of an accelerator.
None
Exceptions
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.AcceleratorNotDisabledException
GlobalAccelerator.Client.exceptions.AssociatedListenerFoundException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
GlobalAccelerator.Client.exceptions.InvalidArgumentException
Delete a custom routing accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources (listeners and endpoint groups). To disable the accelerator, update the accelerator to set Enabled
to false.
Warning
When you create a custom routing accelerator, by default, Global Accelerator provides you with a set of two static IP addresses.
The IP addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them. As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Identity and access management in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.delete_custom_routing_accelerator(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the custom routing accelerator to delete.
None
Exceptions
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.AcceleratorNotDisabledException
GlobalAccelerator.Client.exceptions.AssociatedListenerFoundException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
GlobalAccelerator.Client.exceptions.InvalidArgumentException
Delete an endpoint group from a listener for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.delete_custom_routing_endpoint_group(
EndpointGroupArn='string'
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to delete.
None
Exceptions
Delete a listener for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.delete_custom_routing_listener(
ListenerArn='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to delete.
None
Exceptions
Delete an endpoint group from a listener.
See also: AWS API Documentation
Request Syntax
response = client.delete_endpoint_group(
EndpointGroupArn='string'
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to delete.
None
Exceptions
Delete a listener from an accelerator.
See also: AWS API Documentation
Request Syntax
response = client.delete_listener(
ListenerArn='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
None
Exceptions
Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that cannot receive traffic for a custom routing accelerator. You can deny traffic to all destinations in the VPC endpoint, or deny traffic to a specified list of destination IP addresses and ports. Note that you cannot specify IP addresses or ports outside of the range that you configured for the endpoint group.
After you make changes, you can verify that the updates are complete by checking the status of your accelerator: the status changes from IN_PROGRESS to DEPLOYED.
See also: AWS API Documentation
Request Syntax
response = client.deny_custom_routing_traffic(
EndpointGroupArn='string',
EndpointId='string',
DestinationAddresses=[
'string',
],
DestinationPorts=[
123,
],
DenyAllTrafficToEndpoint=True|False
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
[REQUIRED]
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
DestinationAddresses (list) –
A list of specific Amazon EC2 instance IP addresses (destination addresses) in a subnet that you want to prevent from receiving traffic. The IP addresses must be a subset of the IP addresses allowed for the VPC subnet associated with the endpoint group.
(string) –
DestinationPorts (list) –
A list of specific Amazon EC2 instance ports (destination ports) in a subnet endpoint that you want to prevent from receiving traffic.
(integer) –
DenyAllTrafficToEndpoint (boolean) –
Indicates whether all destination IP addresses and ports for a specified VPC subnet endpoint cannot receive traffic from a custom routing accelerator. The value is TRUE or FALSE.
When set to TRUE, no destinations in the custom routing VPC subnet can receive traffic. Note that you cannot specify destination IP addresses and ports when the value is set to TRUE.
When set to FALSE (or not specified), you must specify a list of destination IP addresses that cannot receive traffic. A list of ports is optional. If you don’t specify a list of ports, the ports that can accept traffic is the same as the ports configured for the endpoint group.
The default value is FALSE.
None
Exceptions
Releases the specified address range that you provisioned to use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.
Before you can release an address range, you must stop advertising it by using WithdrawByoipCidr and you must not have any accelerators that are using static IP addresses allocated from its address range.
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.deprovision_byoip_cidr(
Cidr='string'
)
Cidr (string) –
[REQUIRED]
The address range, in CIDR notation. The prefix must be the same prefix that you specified when you provisioned the address range.
dict
Response Syntax
{
'ByoipCidr': {
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
ByoipCidr (dict) –
Information about the address range.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Exceptions
Describe an accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_accelerator(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to describe.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'DualStackDnsName': 'string',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
Accelerator (dict) –
The description of the accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name for an accelerator is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
DualStackDnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to a dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses.
The naming convention for the dual-stack DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com.
Note: Global Accelerator also assigns a default DNS name, DnsName
, to your accelerator that points just to the static IPv4 addresses.
For more information, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Events (list) –
A history of changes that you make to an accelerator in Global Accelerator.
(dict) –
A complex type that contains a Timestamp
value and Message
for changes that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when you update an accelerator from IPv4 to dual-stack, or from dual-stack to IPv4. Global Accelerator stores a maximum of ten event messages.
Message (string) –
A string that contains an Event
message describing changes or errors when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Timestamp (datetime) –
A timestamp for when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Exceptions
Describe the attributes of an accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_accelerator_attributes(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator with the attributes that you want to describe.
dict
Response Syntax
{
'AcceleratorAttributes': {
'FlowLogsEnabled': True|False,
'FlowLogsS3Bucket': 'string',
'FlowLogsS3Prefix': 'string'
}
}
Response Structure
(dict) –
AcceleratorAttributes (dict) –
The attributes of the accelerator.
FlowLogsEnabled (boolean) –
Indicates whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) –
The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
The prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
s3-bucket_name//AWSLogs/aws_account_id
Exceptions
Describe a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_custom_routing_accelerator(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to describe.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
}
}
Response Structure
(dict) –
Accelerator (dict) –
The description of the custom routing accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
Exceptions
Describe the attributes of a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_custom_routing_accelerator_attributes(
AcceleratorArn='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the custom routing accelerator to describe the attributes for.
dict
Response Syntax
{
'AcceleratorAttributes': {
'FlowLogsEnabled': True|False,
'FlowLogsS3Bucket': 'string',
'FlowLogsS3Prefix': 'string'
}
}
Response Structure
(dict) –
AcceleratorAttributes (dict) –
The attributes of the custom routing accelerator.
FlowLogsEnabled (boolean) –
Indicates whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) –
The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
The prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you don’t specify a prefix, the flow logs are stored in the root of the bucket. If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
DOC-EXAMPLE-BUCKET//AWSLogs/aws_account_id
Exceptions
Describe an endpoint group for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_custom_routing_endpoint_group(
EndpointGroupArn='string'
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to describe.
dict
Response Syntax
{
'EndpointGroup': {
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'DestinationDescriptions': [
{
'FromPort': 123,
'ToPort': 123,
'Protocols': [
'TCP'|'UDP',
]
},
],
'EndpointDescriptions': [
{
'EndpointId': 'string'
},
]
}
}
Response Structure
(dict) –
EndpointGroup (dict) –
The description of an endpoint group for a custom routing accelerator.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
DestinationDescriptions (list) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
FromPort (integer) –
The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
ToPort (integer) –
The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
Protocols (list) –
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
(string) –
EndpointDescriptions (list) –
For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
A complex type for an endpoint for a custom routing accelerator. Each endpoint group can include one or more endpoints, which are virtual private cloud (VPC) subnets.
EndpointId (string) –
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
Exceptions
The description of a listener for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.describe_custom_routing_listener(
ListenerArn='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to describe.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
]
}
}
Response Structure
(dict) –
Listener (dict) –
The description of a listener for a custom routing accelerator.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Exceptions
Describe an endpoint group.
See also: AWS API Documentation
Request Syntax
response = client.describe_endpoint_group(
EndpointGroupArn='string'
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to describe.
dict
Response Syntax
{
'EndpointGroup': {
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'TrafficDialPercentage': ...,
'HealthCheckPort': 123,
'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS',
'HealthCheckPath': 'string',
'HealthCheckIntervalSeconds': 123,
'ThresholdCount': 123,
'PortOverrides': [
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
}
}
Response Structure
(dict) –
EndpointGroup (dict) –
The description of an endpoint group.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) –
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) –
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) –
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) –
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) –
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
Exceptions
Describe a listener.
See also: AWS API Documentation
Request Syntax
response = client.describe_listener(
ListenerArn='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to describe.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
],
'Protocol': 'TCP'|'UDP',
'ClientAffinity': 'NONE'|'SOURCE_IP'
}
}
Response Structure
(dict) –
Listener (dict) –
The description of a listener.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
The protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
Exceptions
Create a paginator for an operation.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
OperationNotPageableError – Raised if the operation is not
pageable. You can use the client.can_paginate
method to
check if an operation is pageable.
L{botocore.paginate.Paginator}
A paginator object.
Returns an object that can wait for some condition.
waiter_name (str) – The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
The specified waiter object.
botocore.waiter.Waiter
List the accelerators for an Amazon Web Services account.
See also: AWS API Documentation
Request Syntax
response = client.list_accelerators(
MaxResults=123,
NextToken='string'
)
MaxResults (integer) – The number of Global Accelerator objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'Accelerators': [
{
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'DualStackDnsName': 'string',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
Accelerators (list) –
The list of accelerators for a customer account.
(dict) –
An accelerator is a complex type that includes one or more listeners that process inbound connections and then direct traffic to one or more endpoint groups, each of which includes endpoints, such as load balancers.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name for an accelerator is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
DualStackDnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to a dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses.
The naming convention for the dual-stack DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com.
Note: Global Accelerator also assigns a default DNS name, DnsName
, to your accelerator that points just to the static IPv4 addresses.
For more information, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Events (list) –
A history of changes that you make to an accelerator in Global Accelerator.
(dict) –
A complex type that contains a Timestamp
value and Message
for changes that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when you update an accelerator from IPv4 to dual-stack, or from dual-stack to IPv4. Global Accelerator stores a maximum of ten event messages.
Message (string) –
A string that contains an Event
message describing changes or errors when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Timestamp (datetime) –
A timestamp for when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
Lists the IP address ranges that were specified in calls to ProvisionByoipCidr , including the current state and a history of state changes.
See also: AWS API Documentation
Request Syntax
response = client.list_byoip_cidrs(
MaxResults=123,
NextToken='string'
)
MaxResults (integer) – The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
NextToken (string) – The token for the next page of results.
dict
Response Syntax
{
'ByoipCidrs': [
{
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
ByoipCidrs (list) –
Information about your address ranges.
(dict) –
Information about an IP address range that is provisioned for use with your Amazon Web Services resources through bring your own IP address (BYOIP).
The following describes each BYOIP State
that your IP address range can be in.
PENDING_PROVISIONING — You’ve submitted a request to provision an IP address range but it is not yet provisioned with Global Accelerator.
READY — The address range is provisioned with Global Accelerator and can be advertised.
PENDING_ADVERTISING — You’ve submitted a request for Global Accelerator to advertise an address range but it is not yet being advertised.
ADVERTISING — The address range is being advertised by Global Accelerator.
PENDING_WITHDRAWING — You’ve submitted a request to withdraw an address range from being advertised but it is still being advertised by Global Accelerator.
PENDING_DEPROVISIONING — You’ve submitted a request to deprovision an address range from Global Accelerator but it is still provisioned.
DEPROVISIONED — The address range is deprovisioned from Global Accelerator.
FAILED_PROVISION — The request to provision the address range from Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_ADVERTISING — The request for Global Accelerator to advertise the address range was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_WITHDRAW — The request to withdraw the address range from advertising by Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_DEPROVISION — The request to deprovision the address range from Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
NextToken (string) –
The token for the next page of results.
Exceptions
List the custom routing accelerators for an Amazon Web Services account.
See also: AWS API Documentation
Request Syntax
response = client.list_custom_routing_accelerators(
MaxResults=123,
NextToken='string'
)
MaxResults (integer) – The number of custom routing Global Accelerator objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'Accelerators': [
{
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
Accelerators (list) –
The list of custom routing accelerators for a customer account.
(dict) –
Attributes of a custom routing accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
List the endpoint groups that are associated with a listener for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.list_custom_routing_endpoint_groups(
ListenerArn='string',
MaxResults=123,
NextToken='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to list endpoint groups for.
MaxResults (integer) – The number of endpoint group objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'EndpointGroups': [
{
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'DestinationDescriptions': [
{
'FromPort': 123,
'ToPort': 123,
'Protocols': [
'TCP'|'UDP',
]
},
],
'EndpointDescriptions': [
{
'EndpointId': 'string'
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
EndpointGroups (list) –
The list of the endpoint groups associated with a listener for a custom routing accelerator.
(dict) –
A complex type for the endpoint group for a custom routing accelerator. An Amazon Web Services Region can have only one endpoint group for a specific listener.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
DestinationDescriptions (list) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
FromPort (integer) –
The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
ToPort (integer) –
The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
Protocols (list) –
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
(string) –
EndpointDescriptions (list) –
For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.
(dict) –
A complex type for an endpoint for a custom routing accelerator. Each endpoint group can include one or more endpoints, which are virtual private cloud (VPC) subnets.
EndpointId (string) –
An ID for the endpoint. For custom routing accelerators, this is the virtual private cloud (VPC) subnet ID.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
List the listeners for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.list_custom_routing_listeners(
AcceleratorArn='string',
MaxResults=123,
NextToken='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to list listeners for.
MaxResults (integer) – The number of listener objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'Listeners': [
{
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
Listeners (list) –
The list of listeners for a custom routing accelerator.
(dict) –
A complex type for a listener for a custom routing accelerator.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
Provides a complete mapping from the public accelerator IP address and port to destination EC2 instance IP addresses and ports in the virtual public cloud (VPC) subnet endpoint for a custom routing accelerator. For each subnet endpoint that you add, Global Accelerator creates a new static port mapping for the accelerator. The port mappings don’t change after Global Accelerator generates them, so you can retrieve and cache the full mapping on your servers.
If you remove a subnet from your accelerator, Global Accelerator removes (reclaims) the port mappings. If you add a subnet to your accelerator, Global Accelerator creates new port mappings (the existing ones don’t change). If you add or remove EC2 instances in your subnet, the port mappings don’t change, because the mappings are created when you add the subnet to Global Accelerator.
The mappings also include a flag for each destination denoting which destination IP addresses and ports are allowed or denied traffic.
See also: AWS API Documentation
Request Syntax
response = client.list_custom_routing_port_mappings(
AcceleratorArn='string',
EndpointGroupArn='string',
MaxResults=123,
NextToken='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to list the custom routing port mappings for.
EndpointGroupArn (string) – The Amazon Resource Name (ARN) of the endpoint group to list the custom routing port mappings for.
MaxResults (integer) – The number of destination port mappings that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'PortMappings': [
{
'AcceleratorPort': 123,
'EndpointGroupArn': 'string',
'EndpointId': 'string',
'DestinationSocketAddress': {
'IpAddress': 'string',
'Port': 123
},
'Protocols': [
'TCP'|'UDP',
],
'DestinationTrafficState': 'ALLOW'|'DENY'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
PortMappings (list) –
The port mappings for a custom routing accelerator.
(dict) –
Returns the ports and associated IP addresses and ports of Amazon EC2 instances in your virtual private cloud (VPC) subnets. Custom routing is a port mapping protocol in Global Accelerator that statically associates port ranges with VPC subnets, which allows Global Accelerator to route to specific instances and ports within one or more subnets.
AcceleratorPort (integer) –
The accelerator port.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
The IP address of the VPC subnet (the subnet ID).
DestinationSocketAddress (dict) –
The EC2 instance IP address and port number in the virtual private cloud (VPC) subnet.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
Protocols (list) –
The protocols supported by the endpoint group.
(string) –
DestinationTrafficState (string) –
Indicates whether or not a port mapping destination can receive traffic. The value is either ALLOW, if traffic is allowed to the destination, or DENY, if traffic is not allowed to the destination.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
GlobalAccelerator.Client.exceptions.InvalidArgumentException
GlobalAccelerator.Client.exceptions.InvalidNextTokenException
GlobalAccelerator.Client.exceptions.EndpointGroupNotFoundException
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
List the port mappings for a specific EC2 instance (destination) in a VPC subnet endpoint. The response is the mappings for one destination IP address. This is useful when your subnet endpoint has mappings that span multiple custom routing accelerators in your account, or for scenarios where you only want to list the port mappings for a specific destination instance.
See also: AWS API Documentation
Request Syntax
response = client.list_custom_routing_port_mappings_by_destination(
EndpointId='string',
DestinationAddress='string',
MaxResults=123,
NextToken='string'
)
EndpointId (string) –
[REQUIRED]
The ID for the virtual private cloud (VPC) subnet.
DestinationAddress (string) –
[REQUIRED]
The endpoint IP address in a virtual private cloud (VPC) subnet for which you want to receive back port mappings.
MaxResults (integer) – The number of destination port mappings that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'DestinationPortMappings': [
{
'AcceleratorArn': 'string',
'AcceleratorSocketAddresses': [
{
'IpAddress': 'string',
'Port': 123
},
],
'EndpointGroupArn': 'string',
'EndpointId': 'string',
'EndpointGroupRegion': 'string',
'DestinationSocketAddress': {
'IpAddress': 'string',
'Port': 123
},
'IpAddressType': 'IPV4'|'DUAL_STACK',
'DestinationTrafficState': 'ALLOW'|'DENY'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
DestinationPortMappings (list) –
The port mappings for the endpoint IP address that you specified in the request.
(dict) –
The port mappings for a specified endpoint IP address (destination).
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator that you have port mappings for.
AcceleratorSocketAddresses (list) –
The IP address/port combinations (sockets) that map to a given destination socket address.
(dict) –
An IP address/port combination.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
The ID for the virtual private cloud (VPC) subnet.
EndpointGroupRegion (string) –
The Amazon Web Services Region for the endpoint group.
DestinationSocketAddress (dict) –
The endpoint IP address/port combination for traffic received on the accelerator socket address.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
DestinationTrafficState (string) –
Indicates whether or not a port mapping destination can receive traffic. The value is either ALLOW, if traffic is allowed to the destination, or DENY, if traffic is not allowed to the destination.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
List the endpoint groups that are associated with a listener.
See also: AWS API Documentation
Request Syntax
response = client.list_endpoint_groups(
ListenerArn='string',
MaxResults=123,
NextToken='string'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
MaxResults (integer) – The number of endpoint group objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'EndpointGroups': [
{
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'TrafficDialPercentage': ...,
'HealthCheckPort': 123,
'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS',
'HealthCheckPath': 'string',
'HealthCheckIntervalSeconds': 123,
'ThresholdCount': 123,
'PortOverrides': [
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
EndpointGroups (list) –
The list of the endpoint groups associated with a listener.
(dict) –
A complex type for the endpoint group. An Amazon Web Services Region can have only one endpoint group for a specific listener.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) –
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) –
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) –
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) –
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) –
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
List the listeners for an accelerator.
See also: AWS API Documentation
Request Syntax
response = client.list_listeners(
AcceleratorArn='string',
MaxResults=123,
NextToken='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator for which you want to list listener objects.
MaxResults (integer) – The number of listener objects that you want to return with this call. The default value is 10.
NextToken (string) – The token for the next set of results. You receive this token from a previous call.
dict
Response Syntax
{
'Listeners': [
{
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
],
'Protocol': 'TCP'|'UDP',
'ClientAffinity': 'NONE'|'SOURCE_IP'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
Listeners (list) –
The list of listeners for an accelerator.
(dict) –
A complex type for a listener.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
The protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
NextToken (string) –
The token for the next set of results. You receive this token from a previous call.
Exceptions
List all tags for an accelerator.
For more information, see Tagging in Global Accelerator in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
ResourceArn='string'
)
ResourceArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to list tags for. An ARN uniquely identifies an accelerator.
dict
Response Syntax
{
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
(dict) –
Tags (list) –
Root level tag for the Tags parameters.
(dict) –
A complex type that contains a Tag
key and Tag
value.
Key (string) –
A string that contains a Tag
key.
Value (string) –
A string that contains a Tag
value.
Exceptions
Provisions an IP address range to use with your Amazon Web Services resources through bring your own IP addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned, it is ready to be advertised using AdvertiseByoipCidr .
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.provision_byoip_cidr(
Cidr='string',
CidrAuthorizationContext={
'Message': 'string',
'Signature': 'string'
}
)
Cidr (string) –
[REQUIRED]
The public IPv4 address range, in CIDR notation. The most specific IP prefix that you can specify is /24. The address range cannot overlap with another address range that you’ve brought to this or another Region.
CidrAuthorizationContext (dict) –
[REQUIRED]
A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.
Message (string) – [REQUIRED]
The plain-text authorization message for the prefix and account.
Signature (string) – [REQUIRED]
The signed authorization message for the prefix and account.
dict
Response Syntax
{
'ByoipCidr': {
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
ByoipCidr (dict) –
Information about the address range.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Exceptions
Remove endpoints from a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.remove_custom_routing_endpoints(
EndpointIds=[
'string',
],
EndpointGroupArn='string'
)
EndpointIds (list) –
[REQUIRED]
The IDs for the endpoints. For custom routing accelerators, endpoint IDs are the virtual private cloud (VPC) subnet IDs.
(string) –
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group to remove endpoints from.
None
Exceptions
Remove endpoints from an endpoint group.
The RemoveEndpoints
API operation is the recommended option for removing endpoints. The alternative is to remove endpoints by updating an endpoint group by using the UpdateEndpointGroup API operation. There are two advantages to using AddEndpoints
to remove endpoints instead:
It’s more convenient, because you only need to specify the endpoints that you want to remove. With the UpdateEndpointGroup
API operation, you must specify all of the endpoints in the endpoint group except the ones that you want to remove from the group.
It’s faster, because Global Accelerator doesn’t need to resolve any endpoints. With the UpdateEndpointGroup
API operation, Global Accelerator must resolve all of the endpoints that remain in the group.
See also: AWS API Documentation
Request Syntax
response = client.remove_endpoints(
EndpointIdentifiers=[
{
'EndpointId': 'string',
'ClientIPPreservationEnabled': True|False
},
],
EndpointGroupArn='string'
)
EndpointIdentifiers (list) –
[REQUIRED]
The identifiers of the endpoints that you want to remove.
(dict) –
A complex type for an endpoint. Specifies information about the endpoint to remove from the endpoint group.
EndpointId (string) – [REQUIRED]
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
None
Exceptions
Add tags to an accelerator resource.
For more information, see Tagging in Global Accelerator in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
ResourceArn='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
ResourceArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the Global Accelerator resource to add tags to. An ARN uniquely identifies a resource.
Tags (list) –
[REQUIRED]
The tags to add to a resource. A tag consists of a key and a value that you define.
(dict) –
A complex type that contains a Tag
key and Tag
value.
Key (string) – [REQUIRED]
A string that contains a Tag
key.
Value (string) – [REQUIRED]
A string that contains a Tag
value.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
Remove tags from a Global Accelerator resource. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from an accelerator that was already removed.
For more information, see Tagging in Global Accelerator in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
ResourceArn='string',
TagKeys=[
'string',
]
)
ResourceArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the Global Accelerator resource to remove tags from. An ARN uniquely identifies a resource.
TagKeys (list) –
[REQUIRED]
The tag key pairs that you want to remove from the specified resources.
(string) –
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
Update an accelerator.
Warning
Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify --region us-west-2
on AWS CLI commands.
See also: AWS API Documentation
Request Syntax
response = client.update_accelerator(
AcceleratorArn='string',
Name='string',
IpAddressType='IPV4'|'DUAL_STACK',
Enabled=True|False
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to update.
Name (string) – The name of the accelerator. The name can have a maximum of 64 characters, must contain only alphanumeric characters, periods (.), or hyphens (-), and must not begin or end with a hyphen or period.
IpAddressType (string) – The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether an accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'DualStackDnsName': 'string',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
Accelerator (dict) –
Information about the updated accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name for an accelerator is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
DualStackDnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to a dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses.
The naming convention for the dual-stack DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com.
Note: Global Accelerator also assigns a default DNS name, DnsName
, to your accelerator that points just to the static IPv4 addresses.
For more information, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Events (list) –
A history of changes that you make to an accelerator in Global Accelerator.
(dict) –
A complex type that contains a Timestamp
value and Message
for changes that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when you update an accelerator from IPv4 to dual-stack, or from dual-stack to IPv4. Global Accelerator stores a maximum of ten event messages.
Message (string) –
A string that contains an Event
message describing changes or errors when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Timestamp (datetime) –
A timestamp for when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Exceptions
Update the attributes for an accelerator.
See also: AWS API Documentation
Request Syntax
response = client.update_accelerator_attributes(
AcceleratorArn='string',
FlowLogsEnabled=True|False,
FlowLogsS3Bucket='string',
FlowLogsS3Prefix='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator that you want to update.
FlowLogsEnabled (boolean) –
Update whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow Logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) – The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
Update the prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
s3-bucket_name//AWSLogs/aws_account_id
dict
Response Syntax
{
'AcceleratorAttributes': {
'FlowLogsEnabled': True|False,
'FlowLogsS3Bucket': 'string',
'FlowLogsS3Prefix': 'string'
}
}
Response Structure
(dict) –
AcceleratorAttributes (dict) –
Updated attributes for the accelerator.
FlowLogsEnabled (boolean) –
Indicates whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) –
The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
The prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
s3-bucket_name//AWSLogs/aws_account_id
Exceptions
Update a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.update_custom_routing_accelerator(
AcceleratorArn='string',
Name='string',
IpAddressType='IPV4'|'DUAL_STACK',
Enabled=True|False
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to update.
Name (string) – The name of the accelerator. The name can have a maximum of 64 characters, must contain only alphanumeric characters, periods (.), or hyphens (-), and must not begin or end with a hyphen or period.
IpAddressType (string) – The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether an accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.
dict
Response Syntax
{
'Accelerator': {
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
}
}
Response Structure
(dict) –
Accelerator (dict) –
Information about the updated custom routing accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
Exceptions
Update the attributes for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.update_custom_routing_accelerator_attributes(
AcceleratorArn='string',
FlowLogsEnabled=True|False,
FlowLogsS3Bucket='string',
FlowLogsS3Prefix='string'
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the custom routing accelerator to update attributes for.
FlowLogsEnabled (boolean) –
Update whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) – The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
Update the prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you don’t specify a prefix, the flow logs are stored in the root of the bucket. If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
DOC-EXAMPLE-BUCKET//AWSLogs/aws_account_id
dict
Response Syntax
{
'AcceleratorAttributes': {
'FlowLogsEnabled': True|False,
'FlowLogsS3Bucket': 'string',
'FlowLogsS3Prefix': 'string'
}
}
Response Structure
(dict) –
AcceleratorAttributes (dict) –
Updated custom routing accelerator.
FlowLogsEnabled (boolean) –
Indicates whether flow logs are enabled. The default value is false. If the value is true, FlowLogsS3Bucket
and FlowLogsS3Prefix
must be specified.
For more information, see Flow logs in the Global Accelerator Developer Guide .
FlowLogsS3Bucket (string) –
The name of the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket.
FlowLogsS3Prefix (string) –
The prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if FlowLogsEnabled
is true
.
If you don’t specify a prefix, the flow logs are stored in the root of the bucket. If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:
DOC-EXAMPLE-BUCKET//AWSLogs/aws_account_id
Exceptions
Update a listener for a custom routing accelerator.
See also: AWS API Documentation
Request Syntax
response = client.update_custom_routing_listener(
ListenerArn='string',
PortRanges=[
{
'FromPort': 123,
'ToPort': 123
},
]
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to update.
PortRanges (list) –
[REQUIRED]
The updated port range to support for connections from clients to your accelerator. If you remove ports that are currently being used by a subnet endpoint, the call fails.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
]
}
}
Response Structure
(dict) –
Listener (dict) –
Information for the updated listener for a custom routing accelerator.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Exceptions
Update an endpoint group. A resource must be valid and active when you add it as an endpoint.
See also: AWS API Documentation
Request Syntax
response = client.update_endpoint_group(
EndpointGroupArn='string',
EndpointConfigurations=[
{
'EndpointId': 'string',
'Weight': 123,
'ClientIPPreservationEnabled': True|False
},
],
TrafficDialPercentage=...,
HealthCheckPort=123,
HealthCheckProtocol='TCP'|'HTTP'|'HTTPS',
HealthCheckPath='string',
HealthCheckIntervalSeconds=123,
ThresholdCount=123,
PortOverrides=[
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
)
EndpointGroupArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the endpoint group.
EndpointConfigurations (list) –
The list of endpoint objects. A resource must be valid and active when you add it as an endpoint.
(dict) –
A complex type for endpoints. A resource must be valid and active when you add it as an endpoint.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID. A resource must be valid and active when you add it as an endpoint.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) – The port that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If the listener port is a list of ports, Global Accelerator uses the first port in the list.
HealthCheckProtocol (string) – The protocol that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) – If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).
HealthCheckIntervalSeconds (integer) – The time—10 seconds or 30 seconds—between each health check for an endpoint. The default value is 30.
ThresholdCount (integer) – The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
dict
Response Syntax
{
'EndpointGroup': {
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'TrafficDialPercentage': ...,
'HealthCheckPort': 123,
'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS',
'HealthCheckPath': 'string',
'HealthCheckIntervalSeconds': 123,
'ThresholdCount': 123,
'PortOverrides': [
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
}
}
Response Structure
(dict) –
EndpointGroup (dict) –
The information about the endpoint group that was updated.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) –
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) –
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) –
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) –
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) –
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
Exceptions
Update a listener.
See also: AWS API Documentation
Request Syntax
response = client.update_listener(
ListenerArn='string',
PortRanges=[
{
'FromPort': 123,
'ToPort': 123
},
],
Protocol='TCP'|'UDP',
ClientAffinity='NONE'|'SOURCE_IP'
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener to update.
PortRanges (list) –
The updated list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) – The updated protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
dict
Response Syntax
{
'Listener': {
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
],
'Protocol': 'TCP'|'UDP',
'ClientAffinity': 'NONE'|'SOURCE_IP'
}
}
Response Structure
(dict) –
Listener (dict) –
Information for the updated listener.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
The protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.
Exceptions
Stops advertising an address range that is provisioned as an address pool. You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time.
It can take a few minutes before traffic to the specified addresses stops routing to Amazon Web Services because of propagation delays.
For more information, see Bring your own IP addresses (BYOIP) in the Global Accelerator Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.withdraw_byoip_cidr(
Cidr='string'
)
Cidr (string) –
[REQUIRED]
The address range, in CIDR notation.
dict
Response Syntax
{
'ByoipCidr': {
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
}
}
Response Structure
(dict) –
ByoipCidr (dict) –
Information about the address pool.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Exceptions
Client exceptions are available on a client instance via the exceptions
property. For more detailed instructions and examples on the exact usage of client exceptions, see the error handling user guide.
The available client exceptions are:
GlobalAccelerator.Client.exceptions.AcceleratorNotDisabledException
GlobalAccelerator.Client.exceptions.AcceleratorNotFoundException
GlobalAccelerator.Client.exceptions.AssociatedEndpointGroupFoundException
GlobalAccelerator.Client.exceptions.AssociatedListenerFoundException
GlobalAccelerator.Client.exceptions.ByoipCidrNotFoundException
GlobalAccelerator.Client.exceptions.EndpointAlreadyExistsException
GlobalAccelerator.Client.exceptions.EndpointGroupAlreadyExistsException
GlobalAccelerator.Client.exceptions.EndpointGroupNotFoundException
GlobalAccelerator.Client.exceptions.EndpointNotFoundException
GlobalAccelerator.Client.exceptions.IncorrectCidrStateException
GlobalAccelerator.Client.exceptions.InternalServiceErrorException
GlobalAccelerator.Client.exceptions.InvalidArgumentException
GlobalAccelerator.Client.exceptions.InvalidNextTokenException
GlobalAccelerator.Client.exceptions.InvalidPortRangeException
GlobalAccelerator.Client.exceptions.ListenerNotFoundException
GlobalAccelerator.Client.exceptions.TransactionInProgressException
The accelerator that you specified could not be disabled.
Example
try:
...
except client.exceptions.AcceleratorNotDisabledException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The accelerator that you specified could not be disabled.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The accelerator that you specified doesn’t exist.
Example
try:
...
except client.exceptions.AcceleratorNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The accelerator that you specified doesn’t exist.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
You don’t have access permission.
Example
try:
...
except client.exceptions.AccessDeniedException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
You don’t have access permission.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The listener that you specified has an endpoint group associated with it. You must remove all dependent resources from a listener before you can delete it.
Example
try:
...
except client.exceptions.AssociatedEndpointGroupFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The listener that you specified has an endpoint group associated with it. You must remove all dependent resources from a listener before you can delete it.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an accelerator before you can delete it.
Example
try:
...
except client.exceptions.AssociatedListenerFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an accelerator before you can delete it.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The CIDR that you specified was not found or is incorrect.
Example
try:
...
except client.exceptions.ByoipCidrNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The CIDR that you specified was not found or is incorrect.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
You can’t use both of those options.
Example
try:
...
except client.exceptions.ConflictException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
You can’t use both of those options.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The endpoint that you specified doesn’t exist.
Example
try:
...
except client.exceptions.EndpointAlreadyExistsException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The endpoint that you specified doesn’t exist.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The endpoint group that you specified already exists.
Example
try:
...
except client.exceptions.EndpointGroupAlreadyExistsException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The endpoint group that you specified already exists.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The endpoint group that you specified doesn’t exist.
Example
try:
...
except client.exceptions.EndpointGroupNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The endpoint group that you specified doesn’t exist.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The endpoint that you specified doesn’t exist.
Example
try:
...
except client.exceptions.EndpointNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The endpoint that you specified doesn’t exist.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be incorrect for this action.
Example
try:
...
except client.exceptions.IncorrectCidrStateException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be incorrect for this action.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
There was an internal error for Global Accelerator.
Example
try:
...
except client.exceptions.InternalServiceErrorException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
There was an internal error for Global Accelerator.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
An argument that you specified is invalid.
Example
try:
...
except client.exceptions.InvalidArgumentException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
An argument that you specified is invalid.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
There isn’t another item to return.
Example
try:
...
except client.exceptions.InvalidNextTokenException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
There isn’t another item to return.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The port numbers that you specified are not valid numbers or are not unique for this accelerator.
Example
try:
...
except client.exceptions.InvalidPortRangeException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The port numbers that you specified are not valid numbers or are not unique for this accelerator.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
Processing your request would cause you to exceed an Global Accelerator limit.
Example
try:
...
except client.exceptions.LimitExceededException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Processing your request would cause you to exceed an Global Accelerator limit.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The listener that you specified doesn’t exist.
Example
try:
...
except client.exceptions.ListenerNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The listener that you specified doesn’t exist.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
There’s already a transaction in progress. Another transaction can’t be processed.
Example
try:
...
except client.exceptions.TransactionInProgressException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
There’s already a transaction in progress. Another transaction can’t be processed.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The available paginators are:
paginator = client.get_paginator('list_accelerators')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_accelerators()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'Accelerators': [
{
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1),
'DualStackDnsName': 'string',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
},
],
}
Response Structure
(dict) –
Accelerators (list) –
The list of accelerators for a customer account.
(dict) –
An accelerator is a complex type that includes one or more listeners that process inbound connections and then direct traffic to one or more endpoint groups, each of which includes endpoints, such as load balancers.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a standard accelerator, the value can be IPV4 or DUAL_STACK.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name for an accelerator is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
DualStackDnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to a dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses.
The naming convention for the dual-stack DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .dualstack.awsglobalaccelerator.com. For example: a1234567890abcdef.dualstack.awsglobalaccelerator.com.
Note: Global Accelerator also assigns a default DNS name, DnsName
, to your accelerator that points just to the static IPv4 addresses.
For more information, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Events (list) –
A history of changes that you make to an accelerator in Global Accelerator.
(dict) –
A complex type that contains a Timestamp
value and Message
for changes that you make to an accelerator in Global Accelerator. Messages stored here provide progress or error information when you update an accelerator from IPv4 to dual-stack, or from dual-stack to IPv4. Global Accelerator stores a maximum of ten event messages.
Message (string) –
A string that contains an Event
message describing changes or errors when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
Timestamp (datetime) –
A timestamp for when you update an accelerator in Global Accelerator from IPv4 to dual-stack, or dual-stack to IPv4.
paginator = client.get_paginator('list_byoip_cidrs')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_byoip_cidrs()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'ByoipCidrs': [
{
'Cidr': 'string',
'State': 'PENDING_PROVISIONING'|'READY'|'PENDING_ADVERTISING'|'ADVERTISING'|'PENDING_WITHDRAWING'|'PENDING_DEPROVISIONING'|'DEPROVISIONED'|'FAILED_PROVISION'|'FAILED_ADVERTISING'|'FAILED_WITHDRAW'|'FAILED_DEPROVISION',
'Events': [
{
'Message': 'string',
'Timestamp': datetime(2015, 1, 1)
},
]
},
],
}
Response Structure
(dict) –
ByoipCidrs (list) –
Information about your address ranges.
(dict) –
Information about an IP address range that is provisioned for use with your Amazon Web Services resources through bring your own IP address (BYOIP).
The following describes each BYOIP State
that your IP address range can be in.
PENDING_PROVISIONING — You’ve submitted a request to provision an IP address range but it is not yet provisioned with Global Accelerator.
READY — The address range is provisioned with Global Accelerator and can be advertised.
PENDING_ADVERTISING — You’ve submitted a request for Global Accelerator to advertise an address range but it is not yet being advertised.
ADVERTISING — The address range is being advertised by Global Accelerator.
PENDING_WITHDRAWING — You’ve submitted a request to withdraw an address range from being advertised but it is still being advertised by Global Accelerator.
PENDING_DEPROVISIONING — You’ve submitted a request to deprovision an address range from Global Accelerator but it is still provisioned.
DEPROVISIONED — The address range is deprovisioned from Global Accelerator.
FAILED_PROVISION — The request to provision the address range from Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_ADVERTISING — The request for Global Accelerator to advertise the address range was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_WITHDRAW — The request to withdraw the address range from advertising by Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
FAILED_DEPROVISION — The request to deprovision the address range from Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact Amazon Web Services support.
Cidr (string) –
The address range, in CIDR notation.
State (string) –
The state of the address pool.
Events (list) –
A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
(dict) –
A complex type that contains a Message
and a Timestamp
value for changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Message (string) –
A string that contains an Event
message describing changes that you make in the status of an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
Timestamp (datetime) –
A timestamp for when you make a status change for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP).
paginator = client.get_paginator('list_custom_routing_accelerators')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_custom_routing_accelerators()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'Accelerators': [
{
'AcceleratorArn': 'string',
'Name': 'string',
'IpAddressType': 'IPV4'|'DUAL_STACK',
'Enabled': True|False,
'IpSets': [
{
'IpFamily': 'string',
'IpAddresses': [
'string',
],
'IpAddressFamily': 'IPv4'|'IPv6'
},
],
'DnsName': 'string',
'Status': 'DEPLOYED'|'IN_PROGRESS',
'CreatedTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
},
],
}
Response Structure
(dict) –
Accelerators (list) –
The list of custom routing accelerators for a customer account.
(dict) –
Attributes of a custom routing accelerator.
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator.
Name (string) –
The name of the accelerator. The name must contain only alphanumeric characters or hyphens (-), and must not begin or end with a hyphen.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Enabled (boolean) –
Indicates whether the accelerator is enabled. The value is true or false. The default value is true.
If the value is set to true, the accelerator cannot be deleted. If set to false, accelerator can be deleted.
IpSets (list) –
The static IP addresses that Global Accelerator associates with the accelerator.
(dict) –
A complex type for the set of IP addresses for an accelerator.
IpFamily (string) –
IpFamily is deprecated and has been replaced by IpAddressFamily.
IpAddresses (list) –
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
(string) –
IpAddressFamily (string) –
The types of IP addresses included in this IP set.
DnsName (string) –
The Domain Name System (DNS) name that Global Accelerator creates that points to an accelerator’s static IPv4 addresses.
The naming convention for the DNS name is the following: A lowercase letter a, followed by a 16-bit random hex string, followed by .awsglobalaccelerator.com. For example: a1234567890abcdef.awsglobalaccelerator.com.
If you have a dual-stack accelerator, you also have a second DNS name, DualStackDnsName
, that points to both the A record and the AAAA record for all four static addresses for the accelerator: two IPv4 addresses and two IPv6 addresses.
For more information about the default DNS name, see Support for DNS addressing in Global Accelerator in the Global Accelerator Developer Guide .
Status (string) –
Describes the deployment status of the accelerator.
CreatedTime (datetime) –
The date and time that the accelerator was created.
LastModifiedTime (datetime) –
The date and time that the accelerator was last modified.
paginator = client.get_paginator('list_custom_routing_listeners')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_custom_routing_listeners()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
AcceleratorArn='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to list listeners for.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'Listeners': [
{
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
]
},
],
}
Response Structure
(dict) –
Listeners (list) –
The list of listeners for a custom routing accelerator.
(dict) –
A complex type for a listener for a custom routing accelerator.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The port range to support for connections from clients to your accelerator.
Separately, you set port ranges for endpoints. For more information, see About endpoints for custom routing accelerators .
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
paginator = client.get_paginator('list_custom_routing_port_mappings')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_custom_routing_port_mappings()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
AcceleratorArn='string',
EndpointGroupArn='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator to list the custom routing port mappings for.
EndpointGroupArn (string) – The Amazon Resource Name (ARN) of the endpoint group to list the custom routing port mappings for.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'PortMappings': [
{
'AcceleratorPort': 123,
'EndpointGroupArn': 'string',
'EndpointId': 'string',
'DestinationSocketAddress': {
'IpAddress': 'string',
'Port': 123
},
'Protocols': [
'TCP'|'UDP',
],
'DestinationTrafficState': 'ALLOW'|'DENY'
},
],
}
Response Structure
(dict) –
PortMappings (list) –
The port mappings for a custom routing accelerator.
(dict) –
Returns the ports and associated IP addresses and ports of Amazon EC2 instances in your virtual private cloud (VPC) subnets. Custom routing is a port mapping protocol in Global Accelerator that statically associates port ranges with VPC subnets, which allows Global Accelerator to route to specific instances and ports within one or more subnets.
AcceleratorPort (integer) –
The accelerator port.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
The IP address of the VPC subnet (the subnet ID).
DestinationSocketAddress (dict) –
The EC2 instance IP address and port number in the virtual private cloud (VPC) subnet.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
Protocols (list) –
The protocols supported by the endpoint group.
(string) –
DestinationTrafficState (string) –
Indicates whether or not a port mapping destination can receive traffic. The value is either ALLOW, if traffic is allowed to the destination, or DENY, if traffic is not allowed to the destination.
paginator = client.get_paginator('list_custom_routing_port_mappings_by_destination')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_custom_routing_port_mappings_by_destination()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
EndpointId='string',
DestinationAddress='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
EndpointId (string) –
[REQUIRED]
The ID for the virtual private cloud (VPC) subnet.
DestinationAddress (string) –
[REQUIRED]
The endpoint IP address in a virtual private cloud (VPC) subnet for which you want to receive back port mappings.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'DestinationPortMappings': [
{
'AcceleratorArn': 'string',
'AcceleratorSocketAddresses': [
{
'IpAddress': 'string',
'Port': 123
},
],
'EndpointGroupArn': 'string',
'EndpointId': 'string',
'EndpointGroupRegion': 'string',
'DestinationSocketAddress': {
'IpAddress': 'string',
'Port': 123
},
'IpAddressType': 'IPV4'|'DUAL_STACK',
'DestinationTrafficState': 'ALLOW'|'DENY'
},
],
}
Response Structure
(dict) –
DestinationPortMappings (list) –
The port mappings for the endpoint IP address that you specified in the request.
(dict) –
The port mappings for a specified endpoint IP address (destination).
AcceleratorArn (string) –
The Amazon Resource Name (ARN) of the custom routing accelerator that you have port mappings for.
AcceleratorSocketAddresses (list) –
The IP address/port combinations (sockets) that map to a given destination socket address.
(dict) –
An IP address/port combination.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointId (string) –
The ID for the virtual private cloud (VPC) subnet.
EndpointGroupRegion (string) –
The Amazon Web Services Region for the endpoint group.
DestinationSocketAddress (dict) –
The endpoint IP address/port combination for traffic received on the accelerator socket address.
IpAddress (string) –
The IP address for the socket address.
Port (integer) –
The port for the socket address.
IpAddressType (string) –
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
DestinationTrafficState (string) –
Indicates whether or not a port mapping destination can receive traffic. The value is either ALLOW, if traffic is allowed to the destination, or DENY, if traffic is not allowed to the destination.
paginator = client.get_paginator('list_endpoint_groups')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_endpoint_groups()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ListenerArn='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
ListenerArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the listener.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'EndpointGroups': [
{
'EndpointGroupArn': 'string',
'EndpointGroupRegion': 'string',
'EndpointDescriptions': [
{
'EndpointId': 'string',
'Weight': 123,
'HealthState': 'INITIAL'|'HEALTHY'|'UNHEALTHY',
'HealthReason': 'string',
'ClientIPPreservationEnabled': True|False
},
],
'TrafficDialPercentage': ...,
'HealthCheckPort': 123,
'HealthCheckProtocol': 'TCP'|'HTTP'|'HTTPS',
'HealthCheckPath': 'string',
'HealthCheckIntervalSeconds': 123,
'ThresholdCount': 123,
'PortOverrides': [
{
'ListenerPort': 123,
'EndpointPort': 123
},
]
},
],
}
Response Structure
(dict) –
EndpointGroups (list) –
The list of the endpoint groups associated with a listener.
(dict) –
A complex type for the endpoint group. An Amazon Web Services Region can have only one endpoint group for a specific listener.
EndpointGroupArn (string) –
The Amazon Resource Name (ARN) of the endpoint group.
EndpointGroupRegion (string) –
The Amazon Web Services Region where the endpoint group is located.
EndpointDescriptions (list) –
The list of endpoint objects.
(dict) –
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
EndpointId (string) –
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
Weight (integer) –
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide .
HealthState (string) –
The health status of the endpoint.
HealthReason (string) –
Returns a null result.
ClientIPPreservationEnabled (boolean) –
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client’s IP address is preserved in the X-Forwarded-For
request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide .
TrafficDialPercentage (float) –
The percentage of traffic to send to an Amazon Web Services Region. Additional traffic is distributed to other endpoint groups for this listener.
Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.
The default value is 100.
HealthCheckPort (integer) –
The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.
The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.
HealthCheckProtocol (string) –
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
HealthCheckPath (string) –
If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).
HealthCheckIntervalSeconds (integer) –
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
ThresholdCount (integer) –
The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.
PortOverrides (list) –
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.
(dict) –
Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.
For more information, see Overriding listener ports in the Global Accelerator Developer Guide .
ListenerPort (integer) –
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
EndpointPort (integer) –
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
paginator = client.get_paginator('list_listeners')
Creates an iterator that will paginate through responses from GlobalAccelerator.Client.list_listeners()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
AcceleratorArn='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
AcceleratorArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the accelerator for which you want to list listener objects.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'Listeners': [
{
'ListenerArn': 'string',
'PortRanges': [
{
'FromPort': 123,
'ToPort': 123
},
],
'Protocol': 'TCP'|'UDP',
'ClientAffinity': 'NONE'|'SOURCE_IP'
},
],
}
Response Structure
(dict) –
Listeners (list) –
The list of listeners for an accelerator.
(dict) –
A complex type for a listener.
ListenerArn (string) –
The Amazon Resource Name (ARN) of the listener.
PortRanges (list) –
The list of port ranges for the connections from clients to the accelerator.
(dict) –
A complex type for a range of ports for a listener.
FromPort (integer) –
The first port in the range of ports, inclusive.
ToPort (integer) –
The last port in the range of ports, inclusive.
Protocol (string) –
The protocol for the connections from clients to the accelerator.
ClientAffinity (string) –
Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.
Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE
, Global Accelerator uses the “five-tuple” (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.
If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP
instead. When you use the SOURCE_IP
setting, Global Accelerator uses the “two-tuple” (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.
The default value is NONE
.