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

pub struct NetworkAclEntryProperties {
    pub cidr_block: Value<String>,
    pub egress: Option<Value<bool>>,
    pub icmp: Option<Value<Icmp>>,
    pub ipv6_cidr_block: Option<Value<String>>,
    pub network_acl_id: Value<String>,
    pub port_range: Option<Value<PortRange>>,
    pub protocol: Value<u32>,
    pub rule_action: Value<String>,
    pub rule_number: Value<u32>,
}

Properties for the NetworkAclEntry resource.

Fields

Property CidrBlock.

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

Property Egress.

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

Property Icmp.

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

Property Ipv6CidrBlock.

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

Property NetworkAclId.

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

Property PortRange.

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

Property Protocol.

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

Property RuleAction.

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

Property RuleNumber.

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

Trait Implementations

impl Debug for NetworkAclEntryProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for NetworkAclEntryProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<NetworkAclEntryProperties> for NetworkAclEntry
[src]

[src]

Performs the conversion.

Auto Trait Implementations