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

pub struct SecurityGroupEgressProperties {
    pub cidr_ip: Option<Value<String>>,
    pub cidr_ipv6: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub destination_prefix_list_id: Option<Value<String>>,
    pub destination_security_group_id: Option<Value<String>>,
    pub from_port: Option<Value<u32>>,
    pub group_id: Value<String>,
    pub ip_protocol: Value<String>,
    pub to_port: Option<Value<u32>>,
}

Properties for the SecurityGroupEgress resource.

Fields

Property CidrIp.

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

Property CidrIpv6.

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

Property Description.

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

Property DestinationPrefixListId.

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

Property DestinationSecurityGroupId.

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

Property FromPort.

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

Property GroupId.

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

Property IpProtocol.

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

Property ToPort.

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

Trait Implementations

impl Debug for SecurityGroupEgressProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for SecurityGroupEgressProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SecurityGroupEgressProperties> for SecurityGroupEgress
[src]

[src]

Performs the conversion.

Auto Trait Implementations