Struct rusoto_clouddirectory::DetachObjectRequest[][src]

pub struct DetachObjectRequest {
    pub directory_arn: String,
    pub link_name: String,
    pub parent_reference: ObjectReference,
}

Fields

The Amazon Resource Name (ARN) that is associated with the Directory where objects reside. For more information, see arns.

The link name associated with the object that needs to be detached.

The parent reference from which the object with the specified link name is detached.

Trait Implementations

impl Default for DetachObjectRequest
[src]

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

impl Debug for DetachObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DetachObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DetachObjectRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations