Create Subnet Group
dax_create_subnet_group | R Documentation |
Creates a new subnet group¶
Description¶
Creates a new subnet group.
Usage¶
dax_create_subnet_group(SubnetGroupName, Description, SubnetIds)
Arguments¶
SubnetGroupName |
[required] A name for the subnet group. This value is stored as a lowercase string. |
Description |
A description for the subnet group |
SubnetIds |
[required] A list of VPC subnet IDs for the subnet group. |
Value¶
A list with the following syntax:
list(
SubnetGroup = list(
SubnetGroupName = "string",
Description = "string",
VpcId = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = "string"
)
)
)
)
Request syntax¶
svc$create_subnet_group(
SubnetGroupName = "string",
Description = "string",
SubnetIds = list(
"string"
)
)