Struct rusoto_lightsail::StopInstanceRequest [] [src]

pub struct StopInstanceRequest {
    pub force: Option<bool>,
    pub instance_name: String,
}

Fields

When set to True, forces a Lightsail instance that is stuck in a stopping state to stop.

Only use the force parameter if your instance is stuck in the stopping state. In any other state, your instance should stop normally without adding this parameter to your API request.

The name of the instance (a virtual private server) to stop.

Trait Implementations

impl Default for StopInstanceRequest
[src]

[src]

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

impl Debug for StopInstanceRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for StopInstanceRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations