[][src]Struct rusoto_clouddirectory::GetObjectAttributesRequest

pub struct GetObjectAttributesRequest {
    pub attribute_names: Vec<String>,
    pub consistency_level: Option<String>,
    pub directory_arn: String,
    pub object_reference: ObjectReference,
    pub schema_facet: SchemaFacet,
}

Fields

attribute_names: Vec<String>

List of attribute names whose values will be retrieved.

consistency_level: Option<String>

The consistency level at which to retrieve the attributes on an object.

directory_arn: String

The Amazon Resource Name (ARN) that is associated with the Directory where the object resides.

object_reference: ObjectReference

Reference that identifies the object whose attributes will be retrieved.

schema_facet: SchemaFacet

Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.

Trait Implementations

impl Clone for GetObjectAttributesRequest[src]

impl Debug for GetObjectAttributesRequest[src]

impl Default for GetObjectAttributesRequest[src]

impl PartialEq<GetObjectAttributesRequest> for GetObjectAttributesRequest[src]

impl Serialize for GetObjectAttributesRequest[src]

impl StructuralPartialEq for GetObjectAttributesRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.