Struct rusoto_ec2::ModifyInstancePlacementRequest[][src]

pub struct ModifyInstancePlacementRequest {
    pub affinity: Option<String>,
    pub group_name: Option<String>,
    pub host_id: Option<String>,
    pub instance_id: String,
    pub tenancy: Option<String>,
}

Contains the parameters for ModifyInstancePlacement.

Fields

The affinity setting for the instance.

The name of the placement group in which to place the instance. For spread placement groups, the instance must have a tenancy of default. For cluster placement groups, the instance must have a tenancy of default or dedicated.

To remove an instance from a placement group, specify an empty string ("").

The ID of the Dedicated Host with which to associate the instance.

The ID of the instance that you are modifying.

The tenancy for the instance.

Trait Implementations

impl Default for ModifyInstancePlacementRequest
[src]

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

impl Debug for ModifyInstancePlacementRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyInstancePlacementRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ModifyInstancePlacementRequest
[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