Struct rusoto_ec2::NetworkInterfacePermission[][src]

pub struct NetworkInterfacePermission {
    pub aws_account_id: Option<String>,
    pub aws_service: Option<String>,
    pub network_interface_id: Option<String>,
    pub network_interface_permission_id: Option<String>,
    pub permission: Option<String>,
    pub permission_state: Option<NetworkInterfacePermissionState>,
}

Describes a permission for a network interface.

Fields

The AWS account ID.

The AWS service.

The ID of the network interface.

The ID of the network interface permission.

The type of permission.

Information about the state of the permission.

Trait Implementations

impl Default for NetworkInterfacePermission
[src]

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

impl Debug for NetworkInterfacePermission
[src]

Formats the value using the given formatter. Read more

impl Clone for NetworkInterfacePermission
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NetworkInterfacePermission
[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