package awsredshift import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // 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 "github.com/aws/aws-cdk-go/awscdk" // // cfnClusterSecurityGroupProps := &CfnClusterSecurityGroupProps{ // Description: jsii.String("description"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html // type CfnClusterSecurityGroupProps struct { // A description for the security group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description // Description *string `field:"required" json:"description" yaml:"description"` // Specifies an arbitrary set of tags (key–value pairs) to associate with this security group. // // Use tags to manage your resources. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }