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

pub struct DBSecurityGroupProperties {
    pub db_security_group_ingress: ValueList<Ingress>,
    pub ec2_vpc_id: Option<Value<String>>,
    pub group_description: Value<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the DBSecurityGroup resource.

Fields

Property DBSecurityGroupIngress.

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

Property EC2VpcId.

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

Property GroupDescription.

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

Property Tags.

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

Trait Implementations

impl Debug for DBSecurityGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DBSecurityGroupProperties
[src]

[src]

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

impl Serialize for DBSecurityGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DBSecurityGroupProperties> for DBSecurityGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations