logo
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>,
}
Expand description

Describes a blueprint (a virtual private server image).

Fields

blueprint_id: Option<String>

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

description: Option<String>

The description of the blueprint.

group: Option<String>

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

is_active: Option<bool>

A Boolean value indicating whether the blueprint is active. Inactive blueprints are listed to support customers with existing instances but are not necessarily available for launch of new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.

license_url: Option<String>

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

min_power: Option<i64>

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.

name: Option<String>

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

platform: Option<String>

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

product_url: Option<String>

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

type_: Option<String>

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

version: Option<String>

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

version_code: Option<String>

The version code.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more