Struct cfn::aws::ec2::SecurityGroupProperties [] [src]

pub struct SecurityGroupProperties {
    pub group_description: Value<String>,
    pub group_name: Option<Value<String>>,
    pub security_group_egress: Option<ValueList<Egress>>,
    pub security_group_ingress: Option<ValueList<Ingress>>,
    pub tags: Option<ValueList<Tag>>,
    pub vpc_id: Option<Value<String>>,
}

Properties for the SecurityGroup resource.

Fields

Property GroupDescription.

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

Property GroupName.

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

Property SecurityGroupEgress.

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

Property SecurityGroupIngress.

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

Property Tags.

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

Property VpcId.

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

Trait Implementations

impl Debug for SecurityGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for SecurityGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SecurityGroupProperties> for SecurityGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations