Class: Aws::ElastiCache::Types::CreateCacheSecurityGroupMessage

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

Overview

Represents the input of a CreateCacheSecurityGroup operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cache_security_group_nameString

A name for the cache security group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters. Cannot be the word "Default".

Example: mysecuritygroup

Returns:

  • (String)


2150
2151
2152
2153
2154
2155
2156
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2150

class CreateCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name,
  :description,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

A description for the cache security group.

Returns:

  • (String)


2150
2151
2152
2153
2154
2155
2156
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2150

class CreateCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name,
  :description,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<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.

Returns:



2150
2151
2152
2153
2154
2155
2156
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2150

class CreateCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name,
  :description,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end