Struct rusoto_ec2::LaunchTemplatePlacementRequest [] [src]

pub struct LaunchTemplatePlacementRequest {
    pub affinity: Option<String>,
    pub availability_zone: Option<String>,
    pub group_name: Option<String>,
    pub host_id: Option<String>,
    pub spread_domain: Option<String>,
    pub tenancy: Option<String>,
}

The placement for the instance.

Fields

The affinity setting for an instance on a Dedicated Host.

The Availability Zone for the instance.

The name of the placement group for the instance.

The ID of the Dedicated Host for the instance.

Reserved for future use.

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.

Trait Implementations

impl Default for LaunchTemplatePlacementRequest
[src]

[src]

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

impl Debug for LaunchTemplatePlacementRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplatePlacementRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations