Class: Aws::Redshift::Types::ModifyClusterSubnetGroupMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass ModifyClusterSubnetGroupMessage data as a hash:

{
  cluster_subnet_group_name: "String", # required
  description: "String",
  subnet_ids: ["String"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_subnet_group_nameString

The name of the subnet group to be modified.

Returns:

  • (String)


5909
5910
5911
5912
5913
5914
# File 'lib/aws-sdk-redshift/types.rb', line 5909

class ModifyClusterSubnetGroupMessage < Struct.new(
  :cluster_subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end

#descriptionString

A text description of the subnet group to be modified.

Returns:

  • (String)


5909
5910
5911
5912
5913
5914
# File 'lib/aws-sdk-redshift/types.rb', line 5909

class ModifyClusterSubnetGroupMessage < Struct.new(
  :cluster_subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end

#subnet_idsArray<String>

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

Returns:

  • (Array<String>)


5909
5910
5911
5912
5913
5914
# File 'lib/aws-sdk-redshift/types.rb', line 5909

class ModifyClusterSubnetGroupMessage < Struct.new(
  :cluster_subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end