Struct cfn::aws::redshift::ClusterSecurityGroupIngressProperties [] [src]

pub struct ClusterSecurityGroupIngressProperties {
    pub cidrip: Option<Value<String>>,
    pub cluster_security_group_name: Value<String>,
    pub ec2_security_group_name: Option<Value<String>>,
    pub ec2_security_group_owner_id: Option<Value<String>>,
}

Properties for the ClusterSecurityGroupIngress resource.

Fields

Property CIDRIP.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ClusterSecurityGroupName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property EC2SecurityGroupName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property EC2SecurityGroupOwnerId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for ClusterSecurityGroupIngressProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ClusterSecurityGroupIngressProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ClusterSecurityGroupIngressProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ClusterSecurityGroupIngressProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ClusterSecurityGroupIngressProperties> for ClusterSecurityGroupIngress
[src]

[src]

Performs the conversion.

Auto Trait Implementations