[][src]Struct rusoto_sagemaker::DescribeEndpointConfigOutput

pub struct DescribeEndpointConfigOutput {
    pub creation_time: f64,
    pub endpoint_config_arn: String,
    pub endpoint_config_name: String,
    pub kms_key_id: Option<String>,
    pub production_variants: Vec<ProductionVariant>,
}

Fields

creation_time: f64

A timestamp that shows when the endpoint configuration was created.

endpoint_config_arn: String

The Amazon Resource Name (ARN) of the endpoint configuration.

endpoint_config_name: String

Name of the Amazon SageMaker endpoint configuration.

kms_key_id: Option<String>

AWS KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.

production_variants: Vec<ProductionVariant>

An array of ProductionVariant objects, one for each model that you want to host at this endpoint.

Trait Implementations

impl PartialEq<DescribeEndpointConfigOutput> for DescribeEndpointConfigOutput[src]

impl Default for DescribeEndpointConfigOutput[src]

impl Clone for DescribeEndpointConfigOutput[src]

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

Performs copy-assignment from source. Read more

impl Debug for DescribeEndpointConfigOutput[src]

impl<'de> Deserialize<'de> for DescribeEndpointConfigOutput[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