@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.536Z") @Stability(value=Stable) public interface CfnClusterSecurityGroupIngressProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClusterSecurityGroupIngressProps.Builder
A builder for
CfnClusterSecurityGroupIngressProps |
static class |
CfnClusterSecurityGroupIngressProps.Jsii$Proxy
An implementation for
CfnClusterSecurityGroupIngressProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnClusterSecurityGroupIngressProps.Builder |
builder() |
default String |
getCidrip()
The IP range to be added the Amazon Redshift security group.
|
String |
getClusterSecurityGroupName()
The name of the security group to which the ingress rule is added.
|
default String |
getEc2SecurityGroupName()
The EC2 security group to be added the Amazon Redshift security group.
|
default String |
getEc2SecurityGroupOwnerId()
The AWS account number of the owner of the security group specified by the *EC2SecurityGroupName* parameter.
|
@Stability(value=Stable) @NotNull String getClusterSecurityGroupName()
@Stability(value=Stable) @Nullable default String getCidrip()
@Stability(value=Stable) @Nullable default String getEc2SecurityGroupName()
@Stability(value=Stable) @Nullable default String getEc2SecurityGroupOwnerId()
The AWS Access Key ID is not an acceptable value.
Example: 111122223333
Conditional. If you specify the EC2SecurityGroupName property, you must specify this property.
@Stability(value=Stable) static CfnClusterSecurityGroupIngressProps.Builder builder()
Copyright © 2022. All rights reserved.