[][src]Struct rusoto_sagemaker::AddAssociationRequest

pub struct AddAssociationRequest {
    pub association_type: Option<String>,
    pub destination_arn: String,
    pub source_arn: String,
}

Fields

association_type: Option<String>

The type of association. The following are suggested uses for each type. Amazon SageMaker places no restrictions on their use.

  • ContributedTo - The source contributed to the destination or had a part in enabling the destination. For example, the training data contributed to the training job.

  • AssociatedWith - The source is connected to the destination. For example, an approval workflow is associated with a model deployment.

  • DerivedFrom - The destination is a modification of the source. For example, a digest output of a channel input for a processing job is derived from the original inputs.

  • Produced - The source generated the destination. For example, a training job produced a model artifact.

destination_arn: String

The Amazon Resource Name (ARN) of the destination.

source_arn: String

The ARN of the source.

Trait Implementations

impl Clone for AddAssociationRequest[src]

impl Debug for AddAssociationRequest[src]

impl Default for AddAssociationRequest[src]

impl PartialEq<AddAssociationRequest> for AddAssociationRequest[src]

impl Serialize for AddAssociationRequest[src]

impl StructuralPartialEq for AddAssociationRequest[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, 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.