You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElastiCache::Types::CreateCacheSubnetGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateCacheSubnetGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

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

Represents the input of a CreateCacheSubnetGroup operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_subnet_group_descriptionString

A description for the cache subnet group.

Returns:

  • (String)

    A description for the cache subnet group.

#cache_subnet_group_nameString

A 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)

    A name for the cache subnet group.

#subnet_idsArray<String>

A list of VPC subnet IDs for the cache subnet group.

Returns:

  • (Array<String>)

    A list of VPC subnet IDs for the cache subnet group.