List Accelerators
| globalaccelerator_list_accelerators | R Documentation |
List the accelerators for an Amazon Web Services account¶
Description¶
List the accelerators for an Amazon Web Services account.
Usage¶
Arguments¶
MaxResultsThe number of Global Accelerator objects that you want to return with this call. The default value is 10.
NextTokenThe token for the next set of results. You receive this token from a previous call.
Value¶
A list with the following syntax:
list(
Accelerators = list(
list(
AcceleratorArn = "string",
Name = "string",
IpAddressType = "IPV4"|"DUAL_STACK",
Enabled = TRUE|FALSE,
IpSets = list(
list(
IpFamily = "string",
IpAddresses = list(
"string"
),
IpAddressFamily = "IPv4"|"IPv6"
)
),
DnsName = "string",
Status = "DEPLOYED"|"IN_PROGRESS",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
DualStackDnsName = "string",
Events = list(
list(
Message = "string",
Timestamp = as.POSIXct(
"2015-01-01"
)
)
)
)
),
NextToken = "string"
)