CfnClusterSecurityGroupIngressMixinProps
- class aws_cdk.mixins_preview.aws_redshift.mixins.CfnClusterSecurityGroupIngressMixinProps(*, cidrip=None, cluster_security_group_name=None, ec2_security_group_name=None, ec2_security_group_owner_id=None)
Bases:
objectProperties for CfnClusterSecurityGroupIngressPropsMixin.
- Parameters:
cidrip (
Optional[str]) – The IP range to be added the Amazon Redshift security group.cluster_security_group_name (
Optional[str]) – The name of the security group to which the ingress rule is added.ec2_security_group_name (
Optional[str]) – The EC2 security group to be added the Amazon Redshift security group.ec2_security_group_owner_id (
Optional[str]) – 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 theEC2SecurityGroupNameproperty, you must specify this property.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_redshift import mixins as redshift_mixins cfn_cluster_security_group_ingress_mixin_props = redshift_mixins.CfnClusterSecurityGroupIngressMixinProps( cidrip="cidrip", cluster_security_group_name="clusterSecurityGroupName", ec2_security_group_name="ec2SecurityGroupName", ec2_security_group_owner_id="ec2SecurityGroupOwnerId" )
Attributes
- cidrip
The IP range to be added the Amazon Redshift security group.
- cluster_security_group_name
The name of the security group to which the ingress rule is added.
- ec2_security_group_name
The EC2 security group to be added the Amazon Redshift security group.
- ec2_security_group_owner_id
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.