CreateCustomRoutingAccelerator
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.
Important
Global Accelerator is a global service that supports endpoints in multiple AWS 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.
Request Syntax
{
"Enabled": boolean
,
"IdempotencyToken": "string
",
"IpAddresses": [ "string
" ],
"IpAddressType": "string
",
"Name": "string
",
"Tags": [
{
"Key": "string
",
"Value": "string
"
}
]
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
- Enabled
-
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.
Type: Boolean
Required: No
- IdempotencyToken
-
A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.
Type: String
Length Constraints: Maximum length of 255.
Required: Yes
- IpAddresses
-
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 AWS, 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 AWS, 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 AWS Global Accelerator Developer Guide.
Type: Array of strings
Array Members: Minimum number of 0 items. Maximum number of 2 items.
Length Constraints: Maximum length of 45.
Required: No
- IpAddressType
-
The IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
Type: String
Valid Values:
IPV4 | DUAL_STACK
Required: No
- Name
-
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.
Type: String
Length Constraints: Maximum length of 255.
Required: Yes
- Tags
-
Create tags for an accelerator.
For more information, see Tagging in AWS Global Accelerator in the AWS Global Accelerator Developer Guide.
Type: Array of Tag objects
Required: No
Response Syntax
{
"Accelerator": {
"AcceleratorArn": "string",
"CreatedTime": number,
"DnsName": "string",
"Enabled": boolean,
"IpAddressType": "string",
"IpSets": [
{
"IpAddresses": [ "string" ],
"IpAddressFamily": "string",
"IpFamily": "string"
}
],
"LastModifiedTime": number,
"Name": "string",
"Status": "string"
}
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- Accelerator
-
The accelerator that is created.
Type: CustomRoutingAccelerator object
Errors
For information about the errors that are common to all actions, see Common Errors.
- AccessDeniedException
-
You don't have access permission.
HTTP Status Code: 400
- InternalServiceErrorException
-
There was an internal error for AWS Global Accelerator.
HTTP Status Code: 400
- InvalidArgumentException
-
An argument that you specified is invalid.
HTTP Status Code: 400
- LimitExceededException
-
Processing your request would cause you to exceed an AWS Global Accelerator limit.
HTTP Status Code: 400
Examples
Create a custom routing accelerator
The following is an example of creating a custom routing accelerator with two tags, and the response (which does not include the tag information).
aws globalaccelerator create-custom-routing-accelerator --name ExampleCustomRoutingAccelerator --tags Key="Name",Value="Example Name" Key="Project",Value="Example Project" --region us-west-2 --ip-addresses 192.0.2.250 198.51.100.52
{ "Accelerator": { "AcceleratorArn": "arn:aws:globalaccelerator::012345678901:accelerator/1234abcd-abcd-1234-abcd-1234abcdefgh", "IpAddressType": "IPV4", "Name": "ExampleCustomRoutingAccelerator", "Enabled": true, "Status": "IN_PROGRESS", "IpSets": [ { "IpAddresses": [ "192.0.2.250", "198.51.100.52" ], "IpFamily": "IPv4" } ], "DnsName":"a1234567890abcdef.awsglobalaccelerator.com", "CreatedTime": 1542394847.0, "LastModifiedTime": 1542394847.0 } }
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: