Struct rusoto_ec2::NetworkAclAssociation[][src]

pub struct NetworkAclAssociation {
    pub network_acl_association_id: Option<String>,
    pub network_acl_id: Option<String>,
    pub subnet_id: Option<String>,
}

Describes an association between a network ACL and a subnet.

Fields

The ID of the association between a network ACL and a subnet.

The ID of the network ACL.

The ID of the subnet.

Trait Implementations

impl Default for NetworkAclAssociation
[src]

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

impl Debug for NetworkAclAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for NetworkAclAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NetworkAclAssociation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations