interface CfnClusterSecurityGroupIngressProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnClusterSecurityGroupIngressProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnClusterSecurityGroupIngressProps |
Java | software.amazon.awscdk.services.redshift.CfnClusterSecurityGroupIngressProps |
Python | aws_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
Name | Type | Description |
---|---|---|
cluster | string | The name of the security group to which the ingress rule is added. |
cidrip? | string | The IP range to be added the Amazon Redshift security group. |
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. |
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.