Struct rusoto_clouddirectory::AttachTypedLinkRequest [] [src]

pub struct AttachTypedLinkRequest {
    pub attributes: Vec<AttributeNameAndValue>,
    pub directory_arn: String,
    pub source_object_reference: ObjectReference,
    pub target_object_reference: ObjectReference,
    pub typed_link_facet: TypedLinkSchemaAndFacetName,
}

Fields

A set of attributes that are associated with the typed link.

The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.

Identifies the source object that the typed link will attach to.

Identifies the target object that the typed link will attach to.

Identifies the typed link facet that is associated with the typed link.

Trait Implementations

impl Default for AttachTypedLinkRequest
[src]

[src]

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

impl Debug for AttachTypedLinkRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AttachTypedLinkRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations