[][src]Struct rusoto_sagemaker::DescribeModelPackageOutput

pub struct DescribeModelPackageOutput {
    pub certify_for_marketplace: Option<bool>,
    pub creation_time: f64,
    pub inference_specification: Option<InferenceSpecification>,
    pub model_package_arn: String,
    pub model_package_description: Option<String>,
    pub model_package_name: String,
    pub model_package_status: String,
    pub model_package_status_details: ModelPackageStatusDetails,
    pub source_algorithm_specification: Option<SourceAlgorithmSpecification>,
    pub validation_specification: Option<ModelPackageValidationSpecification>,
}

Fields

certify_for_marketplace: Option<bool>

Whether the model package is certified for listing on AWS Marketplace.

creation_time: f64

A timestamp specifying when the model package was created.

inference_specification: Option<InferenceSpecification>

Details about inference jobs that can be run with models based on this model package.

model_package_arn: String

The Amazon Resource Name (ARN) of the model package.

model_package_description: Option<String>

A brief summary of the model package.

model_package_name: String

The name of the model package being described.

model_package_status: String

The current status of the model package.

model_package_status_details: ModelPackageStatusDetails

Details about the current status of the model package.

source_algorithm_specification: Option<SourceAlgorithmSpecification>

Details about the algorithm that was used to create the model package.

validation_specification: Option<ModelPackageValidationSpecification>

Configurations for one or more transform jobs that Amazon SageMaker runs to test the model package.

Trait Implementations

impl PartialEq<DescribeModelPackageOutput> for DescribeModelPackageOutput[src]

impl Default for DescribeModelPackageOutput[src]

impl Clone for DescribeModelPackageOutput[src]

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

Performs copy-assignment from source. Read more

impl Debug for DescribeModelPackageOutput[src]

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

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self