Modifies an existing subnet group.
dax_update_subnet_group(SubnetGroupName, Description, SubnetIds)
A list with the following syntax:
list(
SubnetGroup = list(
SubnetGroupName = "string",
Description = "string",
VpcId = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = "string"
)
)
)
)
[required] The name of the subnet group.
A description of the subnet group.
A list of subnet IDs in the subnet group.
svc$update_subnet_group(
SubnetGroupName = "string",
Description = "string",
SubnetIds = list(
"string"
)
)