CfnClusterSecurityGroupProps
- class aws_cdk.aws_redshift.CfnClusterSecurityGroupProps(*, description, tags=None)
Bases:
object
Properties for defining a
CfnClusterSecurityGroup
.- Parameters:
description (
str
) – A description for the security group.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Specifies an arbitrary set of tags (key–value pairs) to associate with this security group. Use tags to manage your resources.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_redshift as redshift cfn_cluster_security_group_props = redshift.CfnClusterSecurityGroupProps( description="description", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description for the security group.
- tags
Specifies an arbitrary set of tags (key–value pairs) to associate with this security group.
Use tags to manage your resources.