interface CfnClusterSecurityGroupProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Redshift.CfnClusterSecurityGroupProps | 
|  Java | software.amazon.awscdk.services.redshift.CfnClusterSecurityGroupProps | 
|  Python | aws_cdk.aws_redshift.CfnClusterSecurityGroupProps | 
|  TypeScript | @aws-cdk/aws-redshift»CfnClusterSecurityGroupProps | 
Properties for defining a CfnClusterSecurityGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshift from '@aws-cdk/aws-redshift';
const cfnClusterSecurityGroupProps: redshift.CfnClusterSecurityGroupProps = {
  description: 'description',
  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| description | string | A description for the security group. | 
| tags? | Cfn[] | Specifies an arbitrary set of tags (key–value pairs) to associate with this security group. | 
description
Type:
string
A description for the security group.
tags?
Type:
Cfn[]
(optional)
Specifies an arbitrary set of tags (key–value pairs) to associate with this security group.
Use tags to manage your resources.
