Update Subnet Group
memorydb_update_subnet_group | R Documentation |
Updates a subnet group¶
Description¶
Updates a subnet group. For more information, see Updating a subnet group
Usage¶
memorydb_update_subnet_group(SubnetGroupName, Description, SubnetIds)
Arguments¶
SubnetGroupName |
[required] The name of the subnet group |
Description |
A description of the subnet group |
SubnetIds |
The EC2 subnet IDs for the subnet group. |
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$update_subnet_group(
SubnetGroupName = "string",
Description = "string",
SubnetIds = list(
"string"
)
)