Struct rusoto_clouddirectory::BatchReadOperation [] [src]

pub struct BatchReadOperation {
    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_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

Retrieves metadata about an object.

Lists indices attached to an object.

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 link.

Lists objects attached to the specified index.

Lists all attributes that are associated with an object.

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

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.

Returns policies attached to an object in pagination fashion.

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 link.

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

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 Default for BatchReadOperation
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for BatchReadOperation
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchReadOperation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations