[][src]Struct rusoto_opsworks::DescribeInstancesRequest

pub struct DescribeInstancesRequest {
    pub instance_ids: Option<Vec<String>>,
    pub layer_id: Option<String>,
    pub stack_id: Option<String>,
}

Fields

instance_ids: Option<Vec<String>>

An array of instance IDs to be described. If you use this parameter, DescribeInstances returns a description of the specified instances. Otherwise, it returns a description of every instance.

layer_id: Option<String>

A layer ID. If you use this parameter, DescribeInstances returns descriptions of the instances associated with the specified layer.

stack_id: Option<String>

A stack ID. If you use this parameter, DescribeInstances returns descriptions of the instances associated with the specified stack.

Trait Implementations

impl Clone for DescribeInstancesRequest[src]

impl Debug for DescribeInstancesRequest[src]

impl Default for DescribeInstancesRequest[src]

impl PartialEq<DescribeInstancesRequest> for DescribeInstancesRequest[src]

impl Serialize for DescribeInstancesRequest[src]

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