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

impl Debug for TypedLinkFacet[src]

impl Default for TypedLinkFacet[src]

impl PartialEq<TypedLinkFacet> for TypedLinkFacet[src]

impl Serialize for TypedLinkFacet[src]

impl StructuralPartialEq for TypedLinkFacet[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.