Struct aws_sdk_sagemaker::input::ListHubsInput
source · #[non_exhaustive]pub struct ListHubsInput { /* private fields */ }
Implementations§
source§impl ListHubsInput
impl ListHubsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListHubs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListHubs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListHubs
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListHubsInput
.
source§impl ListHubsInput
impl ListHubsInput
sourcepub fn name_contains(&self) -> Option<&str>
pub fn name_contains(&self) -> Option<&str>
Only list hubs with names that contain the specified string.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
Only list hubs that were created before the time specified.
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
Only list hubs that were created after the time specified.
sourcepub fn last_modified_time_before(&self) -> Option<&DateTime>
pub fn last_modified_time_before(&self) -> Option<&DateTime>
Only list hubs that were last modified before the time specified.
sourcepub fn last_modified_time_after(&self) -> Option<&DateTime>
pub fn last_modified_time_after(&self) -> Option<&DateTime>
Only list hubs that were last modified after the time specified.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Sort hubs by ascending or descending order.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of hubs to list.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response to a previous ListHubs
request was truncated, the response includes a NextToken
. To retrieve the next set of hubs, use the token in the next request.
Trait Implementations§
source§impl Clone for ListHubsInput
impl Clone for ListHubsInput
source§fn clone(&self) -> ListHubsInput
fn clone(&self) -> ListHubsInput
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 ListHubsInput
impl Debug for ListHubsInput
source§impl PartialEq<ListHubsInput> for ListHubsInput
impl PartialEq<ListHubsInput> for ListHubsInput
source§fn eq(&self, other: &ListHubsInput) -> bool
fn eq(&self, other: &ListHubsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.