[][src]Struct rusoto_lightsail::CreateInstancesRequest

pub struct CreateInstancesRequest {
    pub add_ons: Option<Vec<AddOnRequest>>,
    pub availability_zone: String,
    pub blueprint_id: String,
    pub bundle_id: String,
    pub instance_names: Vec<String>,
    pub key_pair_name: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub user_data: Option<String>,
}

Fields

add_ons: Option<Vec<AddOnRequest>>

An array of objects representing the add-ons to enable for the new instance.

availability_zone: String

The Availability Zone in which to create your instance. Use the following format: us-east-2a (case sensitive). You can get a list of Availability Zones by using the get regions operation. Be sure to add the include Availability Zones parameter to your request.

blueprint_id: String

The ID for a virtual private server image (e.g., appwordpress44 or applamp70). Use the get blueprints operation to return a list of available images (or blueprints).

Use active blueprints when creating new instances. Inactive blueprints are listed to support customers with existing instances and are not necessarily available to create new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.

bundle_id: String

The bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., micro_1_0).

instance_names: Vec<String>

The names to use for your new Lightsail instances. Separate multiple values using quotation marks and commas, for example: ["MyFirstInstance","MySecondInstance"]

key_pair_name: Option<String>

The name of your key pair.

tags: Option<Vec<Tag>>

The tag keys and optional values to add to the resource during create.

To tag a resource after it has been created, see the tag resource operation.

user_data: Option<String>

A launch script you can create that configures a server with additional user data. For example, you might want to run apt-get -y update.

Depending on the machine image you choose, the command to get software on your instance varies. Amazon Linux and CentOS use yum, Debian and Ubuntu use apt-get, and FreeBSD uses pkg. For a complete list, see the Dev Guide.

Trait Implementations

impl Clone for CreateInstancesRequest[src]

impl Debug for CreateInstancesRequest[src]

impl Default for CreateInstancesRequest[src]

impl PartialEq<CreateInstancesRequest> for CreateInstancesRequest[src]

impl Serialize for CreateInstancesRequest[src]

impl StructuralPartialEq for CreateInstancesRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.