Interface CfnClusterSecurityGroupIngressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterSecurityGroupIngressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:28.764Z")
@Stability(Stable)
public interface CfnClusterSecurityGroupIngressProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnClusterSecurityGroupIngress.
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.*;
CfnClusterSecurityGroupIngressProps cfnClusterSecurityGroupIngressProps = CfnClusterSecurityGroupIngressProps.builder()
.clusterSecurityGroupName("clusterSecurityGroupName")
// the properties below are optional
.cidrip("cidrip")
.ec2SecurityGroupName("ec2SecurityGroupName")
.ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterSecurityGroupIngressPropsstatic final classAn implementation forCfnClusterSecurityGroupIngressProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe IP range to be added the Amazon Redshift security group.The name of the security group to which the ingress rule is added.default StringThe EC2 security group to be added the Amazon Redshift security group.default StringThe AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterSecurityGroupName
The name of the security group to which the ingress rule is added.- See Also:
-
getCidrip
The IP range to be added the Amazon Redshift security group.- See Also:
-
getEc2SecurityGroupName
The EC2 security group to be added the Amazon Redshift security group.- See Also:
-
getEc2SecurityGroupOwnerId
The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.The AWS Access Key ID is not an acceptable value.
Example:
111122223333Conditional. If you specify the
EC2SecurityGroupNameproperty, you must specify this property.- See Also:
-
builder
-