[][src]Struct rusoto_sagemaker::AssociationSummary

pub struct AssociationSummary {
    pub association_type: Option<String>,
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub destination_arn: Option<String>,
    pub destination_name: Option<String>,
    pub destination_type: Option<String>,
    pub source_arn: Option<String>,
    pub source_name: Option<String>,
    pub source_type: Option<String>,
}

Lists a summary of the properties of an association. An association is an entity that links other lineage or experiment entities. An example would be an association between a training job and a model.

Fields

association_type: Option<String>

The type of the association.

created_by: Option<UserContext>creation_time: Option<f64>

When the association was created.

destination_arn: Option<String>

The Amazon Resource Name (ARN) of the destination.

destination_name: Option<String>

The name of the destination.

destination_type: Option<String>

The destination type.

source_arn: Option<String>

The ARN of the source.

source_name: Option<String>

The name of the source.

source_type: Option<String>

The source type.

Trait Implementations

impl Clone for AssociationSummary[src]

impl Debug for AssociationSummary[src]

impl Default for AssociationSummary[src]

impl<'de> Deserialize<'de> for AssociationSummary[src]

impl PartialEq<AssociationSummary> for AssociationSummary[src]

impl StructuralPartialEq for AssociationSummary[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.