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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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 Amazon Web Services account.

Example: ‘examplesecuritygroup`

Returns:

  • (String)


2486
2487
2488
2489
2490
2491
2492
# File 'lib/aws-sdk-redshift/types.rb', line 2486

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

#descriptionString

A description for the security group.

Returns:

  • (String)


2486
2487
2488
2489
2490
2491
2492
# File 'lib/aws-sdk-redshift/types.rb', line 2486

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

#tagsArray<Types::Tag>

A list of tag instances.

Returns:



2486
2487
2488
2489
2490
2491
2492
# File 'lib/aws-sdk-redshift/types.rb', line 2486

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