[][src]Struct rusoto_license_manager::ListResourceInventoryRequest

pub struct ListResourceInventoryRequest {
    pub filters: Option<Vec<InventoryFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<InventoryFilter>>

Filters to scope the results. The following filters and logical operators are supported:

  • accountid - The ID of the AWS account that owns the resource. Logical operators are EQUALS | NOTEQUALS.

  • applicationname - The name of the application. Logical operators are EQUALS | BEGINSWITH.

  • licenseincluded - The type of license included. Logical operators are EQUALS | NOTEQUALS. Possible values are sql-server-enterprise | sql-server-standard | sql-server-web | windows-server-datacenter.

  • platform - The platform of the resource. Logical operators are EQUALS | BEGINSWITH.

  • resourceid - The ID of the resource. Logical operators are EQUALS | NOTEQUALS.

  • tag:<key> - The key/value combination of a tag assigned to the resource. Logical operators are EQUALS (single account) or EQUALS | NOTEQUALS (cross account).

max_results: Option<i64>

Maximum number of results to return in a single call.

next_token: Option<String>

Token for the next set of results.

Trait Implementations

impl Clone for ListResourceInventoryRequest[src]

impl Debug for ListResourceInventoryRequest[src]

impl Default for ListResourceInventoryRequest[src]

impl PartialEq<ListResourceInventoryRequest> for ListResourceInventoryRequest[src]

impl Serialize for ListResourceInventoryRequest[src]

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