[][src]Struct rusoto_clouddirectory::ListAttachedIndicesRequest

pub struct ListAttachedIndicesRequest {
    pub consistency_level: Option<String>,
    pub directory_arn: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub target_reference: ObjectReference,
}

Fields

consistency_level: Option<String>

The consistency level to use for this operation.

directory_arn: String

The ARN of the directory.

max_results: Option<i64>

The maximum number of results to retrieve.

next_token: Option<String>

The pagination token.

target_reference: ObjectReference

A reference to the object that has indices attached.

Trait Implementations

impl PartialEq<ListAttachedIndicesRequest> for ListAttachedIndicesRequest[src]

impl Default for ListAttachedIndicesRequest[src]

impl Clone for ListAttachedIndicesRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ListAttachedIndicesRequest[src]

impl Serialize for ListAttachedIndicesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T