Describe Accelerator
globalaccelerator_describe_accelerator | R Documentation |
Describe an accelerator¶
Description¶
Describe an accelerator.
Usage¶
Arguments¶
AcceleratorArn
[required] The Amazon Resource Name (ARN) of the accelerator to describe.
Value¶
A list with the following syntax:
list(
Accelerator = 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"
)
)
)
)
)