[][src]Struct rusoto_codestar_notifications::ListTargetsRequest

pub struct ListTargetsRequest {
    pub filters: Option<Vec<ListTargetsFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<ListTargetsFilter>>

The filters to use to return information by service or resource type. Valid filters include target type, target address, and target status.

A filter with the same name can appear more than once when used with OR statements. Filters with different names should be applied with AND statements.

max_results: Option<i64>

A non-negative integer used to limit the number of returned results. The maximum number of results that can be returned is 100.

next_token: Option<String>

An enumeration token that, when provided in a request, returns the next batch of the results.

Trait Implementations

impl Clone for ListTargetsRequest[src]

impl Debug for ListTargetsRequest[src]

impl Default for ListTargetsRequest[src]

impl PartialEq<ListTargetsRequest> for ListTargetsRequest[src]

impl Serialize for ListTargetsRequest[src]

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