Class: Aws::Redshift::Types::CreateClusterSecurityGroupMessage

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

Overview

Note:

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

{
  cluster_security_group_name: "String", # required
  description: "String", # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_security_group_nameString

The name for the security group. Amazon Redshift stores the value as a lowercase string.

Constraints:

  • Must contain no more than 255 alphanumeric characters or hyphens.

  • Must not be “Default”.

  • Must be unique for all security groups that are created by your AWS account.

Example: ‘examplesecuritygroup`

Returns:

  • (String)


1856
1857
1858
1859
1860
1861
# File 'lib/aws-sdk-redshift/types.rb', line 1856

class CreateClusterSecurityGroupMessage < Struct.new(
  :cluster_security_group_name,
  :description,
  :tags)
  include Aws::Structure
end

#descriptionString

A description for the security group.

Returns:

  • (String)


1856
1857
1858
1859
1860
1861
# File 'lib/aws-sdk-redshift/types.rb', line 1856

class CreateClusterSecurityGroupMessage < Struct.new(
  :cluster_security_group_name,
  :description,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tag instances.

Returns:



1856
1857
1858
1859
1860
1861
# File 'lib/aws-sdk-redshift/types.rb', line 1856

class CreateClusterSecurityGroupMessage < Struct.new(
  :cluster_security_group_name,
  :description,
  :tags)
  include Aws::Structure
end