[][src]Struct rusoto_lightsail::StopInstanceRequest

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

Fields

force: Option<bool>

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.

instance_name: String

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

Trait Implementations

impl Clone for StopInstanceRequest[src]

impl Debug for StopInstanceRequest[src]

impl Default for StopInstanceRequest[src]

impl PartialEq<StopInstanceRequest> for StopInstanceRequest[src]

impl Serialize for StopInstanceRequest[src]

impl StructuralPartialEq for StopInstanceRequest[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.