Struct rusoto_clouddirectory::TypedLinkFacet [] [src]

pub struct TypedLinkFacet {
    pub attributes: Vec<TypedLinkAttributeDefinition>,
    pub identity_attribute_order: Vec<String>,
    pub name: String,
}

Defines the typed links structure and its attributes. To create a typed link facet, use the CreateTypedLinkFacet API.

Fields

A set of key-value pairs associated with the typed link. Typed link attributes are used when you have data values that are related to the link itself, and not to one of the two objects being linked. Identity attributes also serve to distinguish the link from others of the same type between the same objects.

The set of attributes that distinguish links made from this facet from each other, in the order of significance. Listing typed links can filter on the values of these attributes. See ListOutgoingTypedLinks and ListIncomingTypedLinks for details.

The unique name of the typed link facet.

Trait Implementations

impl Default for TypedLinkFacet
[src]

[src]

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

impl Debug for TypedLinkFacet
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TypedLinkFacet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations