Description Usage Arguments Value Request syntax
View source: R/globalaccelerator_operations.R
List the custom routing accelerators for an AWS account.
1 2 | globalaccelerator_list_custom_routing_accelerators(MaxResults,
NextToken)
|
MaxResults |
The number of custom routing Global Accelerator objects that you want to return with this call. The default value is 10. |
NextToken |
The token for the next set of results. You receive this token from a previous call. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | list(
Accelerators = list(
list(
AcceleratorArn = "string",
Name = "string",
IpAddressType = "IPV4",
Enabled = TRUE|FALSE,
IpSets = list(
list(
IpFamily = "string",
IpAddresses = list(
"string"
)
)
),
DnsName = "string",
Status = "DEPLOYED"|"IN_PROGRESS",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
|
1 2 3 4 | svc$list_custom_routing_accelerators(
MaxResults = 123,
NextToken = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.