[][src]Struct rusoto_route53resolver::ListResolverRuleAssociationsRequest

pub struct ListResolverRuleAssociationsRequest {
    pub filters: Option<Vec<Filter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<Filter>>

An optional specification to return a subset of resolver rules, such as resolver rules that are associated with the same VPC ID.

If you submit a second or subsequent ListResolverRuleAssociations request and specify the NextToken parameter, you must use the same values for Filters, if any, as in the previous request.

max_results: Option<i64>

The maximum number of rule associations that you want to return in the response to a ListResolverRuleAssociations request. If you don't specify a value for MaxResults, Resolver returns up to 100 rule associations.

next_token: Option<String>

For the first ListResolverRuleAssociation request, omit this value.

If you have more than MaxResults rule associations, you can submit another ListResolverRuleAssociation request to get the next group of rule associations. In the next request, specify the value of NextToken from the previous response.

Trait Implementations

impl Clone for ListResolverRuleAssociationsRequest[src]

impl Debug for ListResolverRuleAssociationsRequest[src]

impl Default for ListResolverRuleAssociationsRequest[src]

impl PartialEq<ListResolverRuleAssociationsRequest> for ListResolverRuleAssociationsRequest[src]

impl Serialize for ListResolverRuleAssociationsRequest[src]

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