Struct aws_sdk_sagemaker::input::ListEndpointConfigsInput
source · #[non_exhaustive]pub struct ListEndpointConfigsInput { /* private fields */ }
Implementations§
source§impl ListEndpointConfigsInput
impl ListEndpointConfigsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEndpointConfigs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEndpointConfigs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListEndpointConfigs
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListEndpointConfigsInput
.
source§impl ListEndpointConfigsInput
impl ListEndpointConfigsInput
sourcepub fn sort_by(&self) -> Option<&EndpointConfigSortKey>
pub fn sort_by(&self) -> Option<&EndpointConfigSortKey>
The field to sort results by. The default is CreationTime
.
sourcepub fn sort_order(&self) -> Option<&OrderKey>
pub fn sort_order(&self) -> Option<&OrderKey>
The sort order for results. The default is Descending
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of training jobs to return in the response.
sourcepub fn name_contains(&self) -> Option<&str>
pub fn name_contains(&self) -> Option<&str>
A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
A filter that returns only endpoint configurations created before the specified time (timestamp).
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).
Trait Implementations§
source§impl Clone for ListEndpointConfigsInput
impl Clone for ListEndpointConfigsInput
source§fn clone(&self) -> ListEndpointConfigsInput
fn clone(&self) -> ListEndpointConfigsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListEndpointConfigsInput
impl Debug for ListEndpointConfigsInput
source§impl PartialEq<ListEndpointConfigsInput> for ListEndpointConfigsInput
impl PartialEq<ListEndpointConfigsInput> for ListEndpointConfigsInput
source§fn eq(&self, other: &ListEndpointConfigsInput) -> bool
fn eq(&self, other: &ListEndpointConfigsInput) -> bool
self
and other
values to be equal, and is used
by ==
.