[][src]Struct rusoto_ssm::DescribeInstanceInformationRequest

pub struct DescribeInstanceInformationRequest {
    pub filters: Option<Vec<InstanceInformationStringFilter>>,
    pub instance_information_filter_list: Option<Vec<InstanceInformationFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<InstanceInformationStringFilter>>

One or more filters. Use a filter to return a more specific list of instances. You can filter based on tags applied to EC2 instances. Use this Filters data type instead of InstanceInformationFilterList, which is deprecated.

instance_information_filter_list: Option<Vec<InstanceInformationFilter>>

This is a legacy method. We recommend that you don't use this method. Instead, use the Filters data type. Filters enables you to return instance information by filtering based on tags applied to managed instances.

Attempting to use InstanceInformationFilterList and Filters leads to an exception error.

max_results: Option<i64>

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

next_token: Option<String>

The token for the next set of items to return. (You received this token from a previous call.)

Trait Implementations

impl Clone for DescribeInstanceInformationRequest[src]

impl Debug for DescribeInstanceInformationRequest[src]

impl Default for DescribeInstanceInformationRequest[src]

impl PartialEq<DescribeInstanceInformationRequest> for DescribeInstanceInformationRequest[src]

impl Serialize for DescribeInstanceInformationRequest[src]

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