Skip to content

Modify Cluster Subnet Group

redshift_modify_cluster_subnet_group R Documentation

Modifies a cluster subnet group to include the specified list of VPC subnets

Description

Modifies a cluster subnet group to include the specified list of VPC subnets. The operation replaces the existing list of subnets with the new list of subnets.

Usage

redshift_modify_cluster_subnet_group(ClusterSubnetGroupName,
  Description, SubnetIds)

Arguments

ClusterSubnetGroupName

[required] The name of the subnet group to be modified.

Description

A text description of the subnet group to be modified.

SubnetIds

[required] An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.

Value

A list with the following syntax:

list(
  ClusterSubnetGroup = list(
    ClusterSubnetGroupName = "string",
    Description = "string",
    VpcId = "string",
    SubnetGroupStatus = "string",
    Subnets = list(
      list(
        SubnetIdentifier = "string",
        SubnetAvailabilityZone = list(
          Name = "string",
          SupportedPlatforms = list(
            list(
              Name = "string"
            )
          )
        ),
        SubnetStatus = "string"
      )
    ),
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    SupportedClusterIpAddressTypes = list(
      "string"
    )
  )
)

Request syntax

svc$modify_cluster_subnet_group(
  ClusterSubnetGroupName = "string",
  Description = "string",
  SubnetIds = list(
    "string"
  )
)