[][src]Struct rusoto_clouddirectory::TypedLinkFacet

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 Clone for TypedLinkFacet
[src]

Performs copy-assignment from source. Read more

impl Default for TypedLinkFacet
[src]

impl PartialEq<TypedLinkFacet> for TypedLinkFacet
[src]

impl Debug for TypedLinkFacet
[src]

impl Serialize for TypedLinkFacet
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T