Update Custom Routing Accelerator
| globalaccelerator_update_custom_routing_accelerator | R Documentation |
Update a custom routing accelerator¶
Description¶
Update a custom routing accelerator.
Usage¶
globalaccelerator_update_custom_routing_accelerator(AcceleratorArn,
Name, IpAddressType, IpAddresses, Enabled)
Arguments¶
AcceleratorArn[required] The Amazon Resource Name (ARN) of the accelerator to update.
NameThe 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.
IpAddressTypeThe IP address type that an accelerator supports. For a custom routing accelerator, the value must be IPV4.
IpAddressesThe IP addresses for an accelerator.
EnabledIndicates 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.
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"
)
)
)