Struct cfn::aws::rds::DBSecurityGroupIngressProperties [] [src]

pub struct DBSecurityGroupIngressProperties {
    pub cidrip: Option<Value<String>>,
    pub db_security_group_name: Value<String>,
    pub ec2_security_group_id: Option<Value<String>>,
    pub ec2_security_group_name: Option<Value<String>>,
    pub ec2_security_group_owner_id: Option<Value<String>>,
}

Properties for the DBSecurityGroupIngress resource.

Fields

Property CIDRIP.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DBSecurityGroupName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EC2SecurityGroupId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EC2SecurityGroupName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EC2SecurityGroupOwnerId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DBSecurityGroupIngressProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for DBSecurityGroupIngressProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DBSecurityGroupIngressProperties> for DBSecurityGroupIngress
[src]

[src]

Performs the conversion.

Auto Trait Implementations