interface CfnClusterSecurityGroupIngressMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnClusterSecurityGroupIngressMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnClusterSecurityGroupIngressMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnClusterSecurityGroupIngressMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnClusterSecurityGroupIngressMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » CfnClusterSecurityGroupIngressMixinProps |
Properties for CfnClusterSecurityGroupIngressPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const cfnClusterSecurityGroupIngressMixinProps: redshift.CfnClusterSecurityGroupIngressMixinProps = {
cidrip: 'cidrip',
clusterSecurityGroupName: 'clusterSecurityGroupName',
ec2SecurityGroupName: 'ec2SecurityGroupName',
ec2SecurityGroupOwnerId: 'ec2SecurityGroupOwnerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidrip? | string | The IP range to be added the Amazon Redshift security group. |
| cluster | string | The name of the security group to which the ingress rule is added. |
| ec2 | string | The EC2 security group to be added the Amazon Redshift security group. |
| ec2 | string | The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. |
cidrip?
Type:
string
(optional)
The IP range to be added the Amazon Redshift security group.
clusterSecurityGroupName?
Type:
string
(optional)
The name of the security group to which the ingress rule is added.
ec2SecurityGroupName?
Type:
string
(optional)
The EC2 security group to be added the Amazon Redshift security group.
ec2SecurityGroupOwnerId?
Type:
string
(optional)
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: 111122223333
Conditional. If you specify the EC2SecurityGroupName property, you must specify this property.

.NET
Go
Java
Python
TypeScript