Class: Aws::ElastiCache::Types::CreateCacheSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CreateCacheSubnetGroupMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass CreateCacheSubnetGroupMessage data as a hash:
{
cache_subnet_group_name: "String", # required
cache_subnet_group_description: "String", # required
subnet_ids: ["String"], # required
}
Represents the input of a CreateCacheSubnetGroup
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_subnet_group_description ⇒ String
A description for the cache subnet group.
-
#cache_subnet_group_name ⇒ String
A name for the cache subnet group.
-
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs for the cache subnet group.
Instance Attribute Details
#cache_subnet_group_description ⇒ String
A description for the cache subnet group.
2096 2097 2098 2099 2100 2101 2102 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2096 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#cache_subnet_group_name ⇒ String
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
2096 2097 2098 2099 2100 2101 2102 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2096 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs for the cache subnet group.
2096 2097 2098 2099 2100 2101 2102 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2096 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |