[][src]Struct rusoto_sagemaker::Endpoint

pub struct Endpoint {
    pub creation_time: f64,
    pub data_capture_config: Option<DataCaptureConfigSummary>,
    pub endpoint_arn: String,
    pub endpoint_config_name: String,
    pub endpoint_name: String,
    pub endpoint_status: String,
    pub failure_reason: Option<String>,
    pub last_modified_time: f64,
    pub monitoring_schedules: Option<Vec<MonitoringSchedule>>,
    pub production_variants: Option<Vec<ProductionVariantSummary>>,
    pub tags: Option<Vec<Tag>>,
}

A hosted endpoint for real-time inference.

Fields

creation_time: f64

The time that the endpoint was created.

data_capture_config: Option<DataCaptureConfigSummary>endpoint_arn: String

The Amazon Resource Name (ARN) of the endpoint.

endpoint_config_name: String

The endpoint configuration associated with the endpoint.

endpoint_name: String

The name of the endpoint.

endpoint_status: String

The status of the endpoint.

failure_reason: Option<String>

If the endpoint failed, the reason it failed.

last_modified_time: f64

The last time the endpoint was modified.

monitoring_schedules: Option<Vec<MonitoringSchedule>>

A list of monitoring schedules for the endpoint. For information about model monitoring, see Amazon SageMaker Model Monitor.

production_variants: Option<Vec<ProductionVariantSummary>>

A list of the production variants hosted on the endpoint. Each production variant is a model.

tags: Option<Vec<Tag>>

A list of the tags associated with the endpoint. For more information, see Tagging AWS resources in the AWS General Reference Guide.

Trait Implementations

impl Clone for Endpoint[src]

impl Debug for Endpoint[src]

impl Default for Endpoint[src]

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

impl PartialEq<Endpoint> for Endpoint[src]

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