Delete Subnet Group
memorydb_delete_subnet_group | R Documentation |
Deletes a subnet group¶
Description¶
Deletes a subnet group. You cannot delete a default subnet group or one that is associated with any clusters.
Usage¶
memorydb_delete_subnet_group(SubnetGroupName)
Arguments¶
SubnetGroupName |
[required] The name of the subnet group to delete. |
Value¶
A list with the following syntax:
list(
SubnetGroup = list(
Name = "string",
Description = "string",
VpcId = "string",
Subnets = list(
list(
Identifier = "string",
AvailabilityZone = list(
Name = "string"
)
)
),
ARN = "string"
)
)
Request syntax¶
svc$delete_subnet_group(
SubnetGroupName = "string"
)