[][src]Struct rusoto_comprehend::EndpointFilter

pub struct EndpointFilter {
    pub creation_time_after: Option<f64>,
    pub creation_time_before: Option<f64>,
    pub model_arn: Option<String>,
    pub status: Option<String>,
}

The filter used to determine which endpoints are are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.

Fields

creation_time_after: Option<f64>

Specifies a date after which the returned endpoint or endpoints were created.

creation_time_before: Option<f64>

Specifies a date before which the returned endpoint or endpoints were created.

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 being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.

Trait Implementations

impl Clone for EndpointFilter[src]

impl Debug for EndpointFilter[src]

impl Default for EndpointFilter[src]

impl PartialEq<EndpointFilter> for EndpointFilter[src]

impl Serialize for EndpointFilter[src]

impl StructuralPartialEq for EndpointFilter[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> From<T> for T[src]

impl<T> Instrument 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.