pub struct ListEndpointConfigsInput {
pub creation_time_after: Option<f64>,
pub creation_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>,
}
Fields§
§creation_time_after: Option<f64>
A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).
creation_time_before: Option<f64>
A filter that returns only endpoint configurations created before the specified time (timestamp).
max_results: Option<i64>
The maximum number of training jobs to return in the response.
name_contains: Option<String>
A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
next_token: Option<String>
If the result of the previous ListEndpointConfig
request was truncated, the response includes a NextToken
. To retrieve the next set of endpoint configurations, use the token in the next request.
sort_by: Option<String>
The field to sort results by. The default is CreationTime
.
sort_order: Option<String>
The sort order for results. The default is Descending
.
Trait Implementations§
Source§impl Clone for ListEndpointConfigsInput
impl Clone for ListEndpointConfigsInput
Source§fn clone(&self) -> ListEndpointConfigsInput
fn clone(&self) -> ListEndpointConfigsInput
Returns a duplicate 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 ListEndpointConfigsInput
impl Debug for ListEndpointConfigsInput
Source§impl Default for ListEndpointConfigsInput
impl Default for ListEndpointConfigsInput
Source§fn default() -> ListEndpointConfigsInput
fn default() -> ListEndpointConfigsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListEndpointConfigsInput
impl PartialEq for ListEndpointConfigsInput
Source§impl Serialize for ListEndpointConfigsInput
impl Serialize for ListEndpointConfigsInput
impl StructuralPartialEq for ListEndpointConfigsInput
Auto Trait Implementations§
impl Freeze for ListEndpointConfigsInput
impl RefUnwindSafe for ListEndpointConfigsInput
impl Send for ListEndpointConfigsInput
impl Sync for ListEndpointConfigsInput
impl Unpin for ListEndpointConfigsInput
impl UnwindSafe for ListEndpointConfigsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more