Struct rusoto_clouddirectory::AttachObjectRequest[][src]

pub struct AttachObjectRequest {
    pub child_reference: ObjectReference,
    pub directory_arn: String,
    pub link_name: String,
    pub parent_reference: ObjectReference,
}

Fields

The child object reference to be attached to the object.

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

The link name with which the child object is attached to the parent.

The parent object reference.

Trait Implementations

impl Default for AttachObjectRequest
[src]

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

impl Debug for AttachObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AttachObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AttachObjectRequest
[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