[][src]Struct rusoto_lightsail::Blueprint

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 platform: 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 bundle power required to run this blueprint. For example, you need a bundle with a power value of 500 or more to create an instance that uses a blueprint with a minimum power value of 500. 0 indicates that the blueprint runs on all instance sizes.

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

The operating system platform (either Linux/Unix-based or Windows Server-based) of the blueprint.

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 Clone for Blueprint
[src]

Performs copy-assignment from source. Read more

impl Default for Blueprint
[src]

impl PartialEq<Blueprint> for Blueprint
[src]

impl Debug for Blueprint
[src]

impl<'de> Deserialize<'de> for Blueprint
[src]

Auto Trait Implementations

impl Send for Blueprint

impl Sync for Blueprint

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T