[][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.

The Semantic Segmentation built-in algorithm does not support network isolation.

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 PartialEq<DescribeModelOutput> for DescribeModelOutput[src]

impl Default for DescribeModelOutput[src]

impl Clone for DescribeModelOutput[src]

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

Performs copy-assignment from source. Read more

impl Debug for DescribeModelOutput[src]

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

Auto Trait Implementations

impl Send for DescribeModelOutput

impl Sync for DescribeModelOutput

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]

type Owned = T

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

type Error = !

🔬 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> 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

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

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