Struct rusoto_lightsail::Blueprint [] [src]

pub struct Blueprint {
    pub blueprint_id: Option<String>,
    pub description: Option<String>,
    pub group: Option<String>,
    pub is_active: Option<bool>,
    pub license_url: Option<String>,
    pub min_power: Option<i64>,
    pub name: Option<String>,
    pub product_url: Option<String>,
    pub type_: Option<String>,
    pub version: Option<String>,
    pub version_code: Option<String>,
}

Describes a blueprint (a virtual private server image).

Fields

The ID for the virtual private server image (e.g., app_wordpress_4_4 or app_lamp_7_0).

The description of the blueprint.

The group name of the blueprint (e.g., amazon-linux).

A Boolean value indicating whether the blueprint is active. When you update your blueprints, you will inactivate old blueprints and keep the most recent versions active.

The end-user license agreement URL for the image or blueprint.

The minimum machine size required to run this blueprint. 0 indicates that the blueprint runs on all instances.

The friendly name of the blueprint (e.g., Amazon Linux).

The product URL to learn more about the image or blueprint.

The type of the blueprint (e.g., os or app).

The version number of the operating system, application, or stack (e.g., 2016.03.0).

The version code.

Trait Implementations

impl Default for Blueprint
[src]

[src]

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

impl Debug for Blueprint
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Blueprint
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Blueprint

impl Sync for Blueprint