Struct rusoto_ec2::SpotPlacement[][src]

pub struct SpotPlacement {
    pub availability_zone: Option<String>,
    pub group_name: Option<String>,
    pub tenancy: Option<String>,
}

Describes Spot Instance placement.

Fields

The Availability Zone.

[Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "us-west-2a, us-west-2b".

The name of the placement group.

The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware. The host tenancy is not supported for Spot Instances.

Trait Implementations

impl Default for SpotPlacement
[src]

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

impl Debug for SpotPlacement
[src]

Formats the value using the given formatter. Read more

impl Clone for SpotPlacement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SpotPlacement
[src]

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

This method tests for !=.

Auto Trait Implementations