Creates a new subnet group.
dax_create_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] A name for the subnet group. This value is stored as a lowercase string.
A description for the subnet group
[required] A list of VPC subnet IDs for the subnet group.
svc$create_subnet_group(
SubnetGroupName = "string",
Description = "string",
SubnetIds = list(
"string"
)
)