Struct rusoto_lightsail::InstanceHardware [] [src]

pub struct InstanceHardware {
    pub cpu_count: Option<i64>,
    pub disks: Option<Vec<Disk>>,
    pub ram_size_in_gb: Option<f32>,
}

Describes the hardware for the instance.

Fields

The number of vCPUs the instance has.

The disks attached to the instance.

The amount of RAM in GB on the instance (e.g., 1.0).

Trait Implementations

impl Default for InstanceHardware
[src]

[src]

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

impl Debug for InstanceHardware
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceHardware
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations