Class: Aws::DAX::Types::UpdateSubnetGroupRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the subnet group.

Returns:

  • (String)


1614
1615
1616
1617
1618
1619
# File 'lib/aws-sdk-dax/types.rb', line 1614

class UpdateSubnetGroupRequest < Struct.new(
  :subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end

#subnet_group_nameString

The name of the subnet group.

Returns:

  • (String)


1614
1615
1616
1617
1618
1619
# File 'lib/aws-sdk-dax/types.rb', line 1614

class UpdateSubnetGroupRequest < Struct.new(
  :subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end

#subnet_idsArray<String>

A list of subnet IDs in the subnet group.

Returns:

  • (Array<String>)


1614
1615
1616
1617
1618
1619
# File 'lib/aws-sdk-dax/types.rb', line 1614

class UpdateSubnetGroupRequest < Struct.new(
  :subnet_group_name,
  :description,
  :subnet_ids)
  include Aws::Structure
end