Struct rusoto_lightsail::Bundle [] [src]

pub struct Bundle {
    pub bundle_id: Option<NonEmptyString>,
    pub cpu_count: Option<Integer>,
    pub disk_size_in_gb: Option<Integer>,
    pub instance_type: Option<String>,
    pub is_active: Option<Boolean>,
    pub name: Option<String>,
    pub power: Option<Integer>,
    pub price: Option<Float>,
    pub ram_size_in_gb: Option<Float>,
    pub transfer_per_month_in_gb: Option<Integer>,
}

Describes a bundle, which is a set of specs describing your virtual private server (or instance).

Fields

The bundle ID (e.g., micro_1_0).

The number of vCPUs included in the bundle (e.g., 2).

The size of the SSD (e.g., 30).

The Amazon EC2 instance type (e.g., t2.micro).

A Boolean value indicating whether the bundle is active.

A friendly name for the bundle (e.g., Micro).

The power of the bundle (e.g., 500).

The price in US dollars (e.g., 5.0).

The amount of RAM in GB (e.g., 2.0).

The data transfer rate per month in GB (e.g., 2000).

Trait Implementations

impl Default for Bundle
[src]

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

impl Debug for Bundle
[src]

Formats the value using the given formatter.

impl Clone for Bundle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more