Struct rusoto_clouddirectory::BatchWriteOperationResponse [] [src]

pub struct BatchWriteOperationResponse {
    pub add_facet_to_object: Option<BatchAddFacetToObjectResponse>,
    pub attach_object: Option<BatchAttachObjectResponse>,
    pub attach_policy: Option<BatchAttachPolicyResponse>,
    pub attach_to_index: Option<BatchAttachToIndexResponse>,
    pub attach_typed_link: Option<BatchAttachTypedLinkResponse>,
    pub create_index: Option<BatchCreateIndexResponse>,
    pub create_object: Option<BatchCreateObjectResponse>,
    pub delete_object: Option<BatchDeleteObjectResponse>,
    pub detach_from_index: Option<BatchDetachFromIndexResponse>,
    pub detach_object: Option<BatchDetachObjectResponse>,
    pub detach_policy: Option<BatchDetachPolicyResponse>,
    pub detach_typed_link: Option<BatchDetachTypedLinkResponse>,
    pub remove_facet_from_object: Option<BatchRemoveFacetFromObjectResponse>,
    pub update_object_attributes: Option<BatchUpdateObjectAttributesResponse>,
}

Represents the output of a BatchWrite response operation.

Fields

The result of an add facet to object batch operation.

Attaches an object to a Directory.

Attaches a policy object to a regular object. An object can have a limited number of attached policies.

Attaches the specified object to the specified index.

Attaches a typed link to a specified source and target object. For more information, see Typed link.

Creates an index object. See Indexing for more information.

Creates an object in a Directory.

Deletes an object in a Directory.

Detaches the specified object from the specified index.

Detaches an object from a Directory.

Detaches a policy from a Directory.

Detaches a typed link from a specified source and target object. For more information, see Typed link.

The result of a batch remove facet from object operation.

Updates a given object’s attributes.

Trait Implementations

impl Default for BatchWriteOperationResponse
[src]

[src]

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

impl Debug for BatchWriteOperationResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchWriteOperationResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations