[][src]Struct rusoto_sagemaker::DescribeModelOutput

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

Fields

containers: Option<Vec<ContainerDefinition>>

The containers in the inference pipeline.

creation_time: f64

A timestamp that shows when the model was created.

enable_network_isolation: Option<bool>

If True, no inbound or outbound network calls can be made to or from the model container.

execution_role_arn: String

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

model_arn: String

The Amazon Resource Name (ARN) of the model.

model_name: String

Name of the Amazon SageMaker model.

primary_container: Option<ContainerDefinition>

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

vpc_config: Option<VpcConfig>

A VpcConfig object that specifies the VPC that this model has access to. For more information, see Protect Endpoints by Using an Amazon Virtual Private Cloud

Trait Implementations

impl Clone for DescribeModelOutput[src]

impl Debug for DescribeModelOutput[src]

impl Default for DescribeModelOutput[src]

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

impl PartialEq<DescribeModelOutput> for DescribeModelOutput[src]

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