Struct aws_sdk_comprehend::model::EndpointFilter
source · #[non_exhaustive]pub struct EndpointFilter { /* private fields */ }Expand description
The filter used to determine which endpoints 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.
Implementations§
source§impl EndpointFilter
impl EndpointFilter
sourcepub fn model_arn(&self) -> Option<&str>
pub fn model_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the model to which the endpoint is attached.
sourcepub fn status(&self) -> Option<&EndpointStatus>
pub fn status(&self) -> Option<&EndpointStatus>
Specifies the status of the endpoint being returned. Possible values are: Creating, Ready, Updating, Deleting, Failed.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
Specifies a date before which the returned endpoint or endpoints were created.
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
Specifies a date after which the returned endpoint or endpoints were created.
source§impl EndpointFilter
impl EndpointFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointFilter.
Trait Implementations§
source§impl Clone for EndpointFilter
impl Clone for EndpointFilter
source§fn clone(&self) -> EndpointFilter
fn clone(&self) -> EndpointFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EndpointFilter
impl Debug for EndpointFilter
source§impl PartialEq<EndpointFilter> for EndpointFilter
impl PartialEq<EndpointFilter> for EndpointFilter
source§fn eq(&self, other: &EndpointFilter) -> bool
fn eq(&self, other: &EndpointFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.