aws-cdk-lib.aws_redshift.CfnClusterSecurityGroupIngressProps

interface CfnClusterSecurityGroupIngressProps

LanguageType name
.NETAmazon.CDK.AWS.Redshift.CfnClusterSecurityGroupIngressProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnClusterSecurityGroupIngressProps
Javasoftware.amazon.awscdk.services.redshift.CfnClusterSecurityGroupIngressProps
Pythonaws_cdk.aws_redshift.CfnClusterSecurityGroupIngressProps
TypeScript aws-cdk-lib » aws_redshift » CfnClusterSecurityGroupIngressProps

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 { aws_redshift as redshift } from 'aws-cdk-lib';
const cfnClusterSecurityGroupIngressProps: redshift.CfnClusterSecurityGroupIngressProps = {
  clusterSecurityGroupName: 'clusterSecurityGroupName',

  // the properties below are optional
  cidrip: 'cidrip',
  ec2SecurityGroupName: 'ec2SecurityGroupName',
  ec2SecurityGroupOwnerId: 'ec2SecurityGroupOwnerId',
};

Properties

NameTypeDescription
clusterSecurityGroupNamestringThe name of the security group to which the ingress rule is added.
cidrip?stringThe IP range to be added the Amazon Redshift security group.
ec2SecurityGroupName?stringThe EC2 security group to be added the Amazon Redshift security group.
ec2SecurityGroupOwnerId?stringThe AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter.

clusterSecurityGroupName

Type: string

The name of the security group to which the ingress rule is added.


cidrip?

Type: string (optional)

The IP range to be added the Amazon Redshift security group.


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.