Interface CfnClusterSecurityGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterSecurityGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.788Z")
@Stability(Stable)
public interface CfnClusterSecurityGroupProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.redshift.*;
CfnClusterSecurityGroupProps cfnClusterSecurityGroupProps = CfnClusterSecurityGroupProps.builder()
.description("description")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterSecurityGroupPropsstatic final classAn implementation forCfnClusterSecurityGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the security group. -
getTags
Specifies an arbitrary set of tags (key–value pairs) to associate with this security group.Use tags to manage your resources.
-
builder
-