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
sourceimpl 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.
sourceimpl EndpointFilter
impl EndpointFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointFilter.
Trait Implementations
sourceimpl Clone for EndpointFilter
impl Clone for EndpointFilter
sourcefn clone(&self) -> EndpointFilter
fn clone(&self) -> EndpointFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for EndpointFilter
impl Debug for EndpointFilter
sourceimpl PartialEq<EndpointFilter> for EndpointFilter
impl PartialEq<EndpointFilter> for EndpointFilter
sourcefn eq(&self, other: &EndpointFilter) -> bool
fn eq(&self, other: &EndpointFilter) -> bool
impl StructuralPartialEq for EndpointFilter
Auto Trait Implementations
impl RefUnwindSafe for EndpointFilter
impl Send for EndpointFilter
impl Sync for EndpointFilter
impl Unpin for EndpointFilter
impl UnwindSafe for EndpointFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more