Class: Aws::ElastiCache::Types::ModifyCacheSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ModifyCacheSubnetGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the input of a ‘ModifyCacheSubnetGroup` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_subnet_group_description ⇒ String
A description of the cache subnet group.
-
#cache_subnet_group_name ⇒ String
The name for the cache subnet group.
-
#subnet_ids ⇒ Array<String>
The EC2 subnet IDs for the cache subnet group.
Instance Attribute Details
#cache_subnet_group_description ⇒ String
A description of the cache subnet group.
6202 6203 6204 6205 6206 6207 6208 |
# File 'lib/aws-sdk-elasticache/types.rb', line 6202 class ModifyCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#cache_subnet_group_name ⇒ String
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`
6202 6203 6204 6205 6206 6207 6208 |
# File 'lib/aws-sdk-elasticache/types.rb', line 6202 class ModifyCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The EC2 subnet IDs for the cache subnet group.
6202 6203 6204 6205 6206 6207 6208 |
# File 'lib/aws-sdk-elasticache/types.rb', line 6202 class ModifyCacheSubnetGroupMessage < Struct.new( :cache_subnet_group_name, :cache_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |