Skip to content

Update Subnet Group

dax_update_subnet_group R Documentation

Modifies an existing subnet group

Description

Modifies an existing subnet group.

Usage

dax_update_subnet_group(SubnetGroupName, Description, SubnetIds)

Arguments

SubnetGroupName

[required] The name of the subnet group.

Description

A description of the subnet group.

SubnetIds

A list of subnet IDs in 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",
        SupportedNetworkTypes = list(
          "ipv4"|"ipv6"|"dual_stack"
        )
      )
    ),
    SupportedNetworkTypes = list(
      "ipv4"|"ipv6"|"dual_stack"
    )
  )
)

Request syntax

svc$update_subnet_group(
  SubnetGroupName = "string",
  Description = "string",
  SubnetIds = list(
    "string"
  )
)