Class: Aws::ElastiCache::Types::ModifyCacheSubnetGroupMessage

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

Overview

Note:

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

{
  cache_subnet_group_name: "String", # required
  cache_subnet_group_description: "String",
  subnet_ids: ["String"],
}

Represents the input of a ‘ModifyCacheSubnetGroup` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_subnet_group_descriptionString

A description of the cache subnet group.

Returns:

  • (String)


4060
4061
4062
4063
4064
4065
# File 'lib/aws-sdk-elasticache/types.rb', line 4060

class ModifyCacheSubnetGroupMessage < Struct.new(
  :cache_subnet_group_name,
  :cache_subnet_group_description,
  :subnet_ids)
  include Aws::Structure
end

#cache_subnet_group_nameString

The name for the cache subnet group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters or hyphens.

Example: ‘mysubnetgroup`

Returns:

  • (String)


4060
4061
4062
4063
4064
4065
# File 'lib/aws-sdk-elasticache/types.rb', line 4060

class ModifyCacheSubnetGroupMessage < Struct.new(
  :cache_subnet_group_name,
  :cache_subnet_group_description,
  :subnet_ids)
  include Aws::Structure
end

#subnet_idsArray<String>

The EC2 subnet IDs for the cache subnet group.

Returns:

  • (Array<String>)


4060
4061
4062
4063
4064
4065
# File 'lib/aws-sdk-elasticache/types.rb', line 4060

class ModifyCacheSubnetGroupMessage < Struct.new(
  :cache_subnet_group_name,
  :cache_subnet_group_description,
  :subnet_ids)
  include Aws::Structure
end