Struct rusoto_lightsail::InstanceNetworking[][src]

pub struct InstanceNetworking {
    pub monthly_transfer: Option<MonthlyTransfer>,
    pub ports: Option<Vec<InstancePortInfo>>,
}

Describes monthly data transfer rates and port information for an instance.

Fields

The amount of data in GB allocated for monthly data transfers.

An array of key-value pairs containing information about the ports on the instance.

Trait Implementations

impl Default for InstanceNetworking
[src]

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

impl Debug for InstanceNetworking
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceNetworking
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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