[][src]Struct rusoto_sagemaker::CreateArtifactRequest

pub struct CreateArtifactRequest {
    pub artifact_name: Option<String>,
    pub artifact_type: String,
    pub metadata_properties: Option<MetadataProperties>,
    pub properties: Option<HashMap<String, String>>,
    pub source: ArtifactSource,
    pub tags: Option<Vec<Tag>>,
}

Fields

artifact_name: Option<String>

The name of the artifact. Must be unique to your account in an AWS Region.

artifact_type: String

The artifact type.

metadata_properties: Option<MetadataProperties>properties: Option<HashMap<String, String>>

A list of properties to add to the artifact.

source: ArtifactSource

The ID, ID type, and URI of the source.

tags: Option<Vec<Tag>>

A list of tags to apply to the artifact.

Trait Implementations

impl Clone for CreateArtifactRequest[src]

impl Debug for CreateArtifactRequest[src]

impl Default for CreateArtifactRequest[src]

impl PartialEq<CreateArtifactRequest> for CreateArtifactRequest[src]

impl Serialize for CreateArtifactRequest[src]

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