[][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

attributes: Vec<TypedLinkAttributeDefinition>

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.

identity_attribute_order: Vec<String>

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.

name: String

The unique name of the typed link facet.

Trait Implementations

impl PartialEq<TypedLinkFacet> for TypedLinkFacet[src]

impl Default for TypedLinkFacet[src]

impl Clone for TypedLinkFacet[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TypedLinkFacet[src]

impl Serialize for TypedLinkFacet[src]

Auto Trait Implementations

impl Send for TypedLinkFacet

impl Sync for TypedLinkFacet

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self