[][src]Struct rusoto_comprehend::EndpointProperties

pub struct EndpointProperties {
    pub creation_time: Option<f64>,
    pub current_inference_units: Option<i64>,
    pub desired_inference_units: Option<i64>,
    pub endpoint_arn: Option<String>,
    pub last_modified_time: Option<f64>,
    pub message: Option<String>,
    pub model_arn: Option<String>,
    pub status: Option<String>,
}

Specifies information about the specified endpoint.

Fields

creation_time: Option<f64>

The creation date and time of the endpoint.

current_inference_units: Option<i64>

The number of inference units currently used by the model using this endpoint.

desired_inference_units: Option<i64>

The desired number of inference units to be used by the model using this endpoint. Each inference unit represents of a throughput of 100 characters per second.

endpoint_arn: Option<String>

The Amazon Resource Number (ARN) of the endpoint.

last_modified_time: Option<f64>

The date and time that the endpoint was last modified.

message: Option<String>

Specifies a reason for failure in cases of Failed status.

model_arn: Option<String>

The Amazon Resource Number (ARN) of the model to which the endpoint is attached.

status: Option<String>

Specifies the status of the endpoint. Because the endpoint updates and creation are asynchronous, so customers will need to wait for the endpoint to be Ready status before making inference requests.

Trait Implementations

impl Clone for EndpointProperties[src]

impl Debug for EndpointProperties[src]

impl Default for EndpointProperties[src]

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

impl PartialEq<EndpointProperties> for EndpointProperties[src]

impl StructuralPartialEq for EndpointProperties[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, 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> Sealed<T> for T where
    T: ?Sized

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.