Class: Aws::ElastiCache::Types::CreateCacheSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CreateCacheSubnetGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
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.
-
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource.
Instance Attribute Details
#cache_subnet_group_description ⇒ String
A description for the cache subnet group.
2202 2203 2204 2205 2206 2207 2208 2209 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2202 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids, :tags) 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`
2202 2203 2204 2205 2206 2207 2208 2209 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2202 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs for the cache subnet group.
2202 2203 2204 2205 2206 2207 2208 2209 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2202 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
2202 2203 2204 2205 2206 2207 2208 2209 |
# File 'lib/aws-sdk-elasticache/types.rb', line 2202 class CreateCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |