[][src]Struct rusoto_sagemaker::ListEndpointsInput

pub struct ListEndpointsInput {
    pub creation_time_after: Option<f64>,
    pub creation_time_before: Option<f64>,
    pub last_modified_time_after: Option<f64>,
    pub last_modified_time_before: Option<f64>,
    pub max_results: Option<i64>,
    pub name_contains: Option<String>,
    pub next_token: Option<String>,
    pub sort_by: Option<String>,
    pub sort_order: Option<String>,
    pub status_equals: Option<String>,
}

Fields

A filter that returns only endpoints that were created after the specified time (timestamp).

A filter that returns only endpoints that were created before the specified time (timestamp).

A filter that returns only endpoints that were modified after the specified timestamp.

A filter that returns only endpoints that were modified before the specified timestamp.

The maximum number of endpoints to return in the response.

A string in endpoint names. This filter returns only endpoints whose name contains the specified string.

If the result of a ListEndpoints request was truncated, the response includes a NextToken. To retrieve the next set of endpoints, use the token in the next request.

Sorts the list of results. The default is CreationTime.

The sort order for results. The default is Ascending.

A filter that returns only endpoints with the specified status.

Trait Implementations

impl Clone for ListEndpointsInput
[src]

Performs copy-assignment from source. Read more

impl Default for ListEndpointsInput
[src]

impl PartialEq<ListEndpointsInput> for ListEndpointsInput
[src]

impl Debug for ListEndpointsInput
[src]

impl Serialize for ListEndpointsInput
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T