[][src]Struct rusoto_sagemaker::DescribeModelOutput

pub struct DescribeModelOutput {
    pub creation_time: f64,
    pub execution_role_arn: String,
    pub model_arn: String,
    pub model_name: String,
    pub primary_container: ContainerDefinition,
    pub vpc_config: Option<VpcConfig>,
}

Fields

A timestamp that shows when the model was created.

The Amazon Resource Name (ARN) of the IAM role that you specified for the model.

The Amazon Resource Name (ARN) of the model.

Name of the Amazon SageMaker model.

The location of the primary inference code, associated artifacts, and custom environment map that the inference code uses when it is deployed in production.

A VpcConfig object that specifies the VPC that this model has access to. For more information, see host-vpc

Trait Implementations

impl Clone for DescribeModelOutput
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeModelOutput
[src]

impl PartialEq<DescribeModelOutput> for DescribeModelOutput
[src]

impl Debug for DescribeModelOutput
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T