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

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

Overview

Note:

When making an API call, you may pass CreateCacheSecurityGroupMessage data as a hash:

{
  cache_security_group_name: "String", # required
  description: "String", # required
}

Represents the input of a ‘CreateCacheSecurityGroup` operation.

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)


1569
1570
1571
1572
1573
# File 'lib/aws-sdk-elasticache/types.rb', line 1569

class CreateCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name,
  :description)
  include Aws::Structure
end

#descriptionString

A description for the cache security group.

Returns:

  • (String)


1569
1570
1571
1572
1573
# File 'lib/aws-sdk-elasticache/types.rb', line 1569

class CreateCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name,
  :description)
  include Aws::Structure
end