[][src]Struct rusoto_clouddirectory::BatchReadOperation

pub struct BatchReadOperation {
    pub get_link_attributes: Option<BatchGetLinkAttributes>,
    pub get_object_attributes: Option<BatchGetObjectAttributes>,
    pub get_object_information: Option<BatchGetObjectInformation>,
    pub list_attached_indices: Option<BatchListAttachedIndices>,
    pub list_incoming_typed_links: Option<BatchListIncomingTypedLinks>,
    pub list_index: Option<BatchListIndex>,
    pub list_object_attributes: Option<BatchListObjectAttributes>,
    pub list_object_children: Option<BatchListObjectChildren>,
    pub list_object_parent_paths: Option<BatchListObjectParentPaths>,
    pub list_object_parents: Option<BatchListObjectParents>,
    pub list_object_policies: Option<BatchListObjectPolicies>,
    pub list_outgoing_typed_links: Option<BatchListOutgoingTypedLinks>,
    pub list_policy_attachments: Option<BatchListPolicyAttachments>,
    pub lookup_policy: Option<BatchLookupPolicy>,
}

Represents the output of a BatchRead operation.

Fields

get_link_attributes: Option<BatchGetLinkAttributes>

Retrieves attributes that are associated with a typed link.

get_object_attributes: Option<BatchGetObjectAttributes>

Retrieves attributes within a facet that are associated with an object.

get_object_information: Option<BatchGetObjectInformation>

Retrieves metadata about an object.

list_attached_indices: Option<BatchListAttachedIndices>

Lists indices attached to an object.

list_incoming_typed_links: Option<BatchListIncomingTypedLinks>

Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

list_index: Option<BatchListIndex>

Lists objects attached to the specified index.

list_object_attributes: Option<BatchListObjectAttributes>

Lists all attributes that are associated with an object.

list_object_children: Option<BatchListObjectChildren>

Returns a paginated list of child objects that are associated with a given object.

list_object_parent_paths: Option<BatchListObjectParentPaths>

Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure.

list_object_parents: Option<BatchListObjectParents>list_object_policies: Option<BatchListObjectPolicies>

Returns policies attached to an object in pagination fashion.

list_outgoing_typed_links: Option<BatchListOutgoingTypedLinks>

Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

list_policy_attachments: Option<BatchListPolicyAttachments>

Returns all of the ObjectIdentifiers to which a given policy is attached.

lookup_policy: Option<BatchLookupPolicy>

Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.

Trait Implementations

impl Clone for BatchReadOperation[src]

impl Debug for BatchReadOperation[src]

impl Default for BatchReadOperation[src]

impl PartialEq<BatchReadOperation> for BatchReadOperation[src]

impl Serialize for BatchReadOperation[src]

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