Struct aws_sdk_sagemaker::input::ListAppsInput [−][src]
#[non_exhaustive]pub struct ListAppsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub sort_order: Option<SortOrder>,
pub sort_by: Option<AppSortKey>,
pub domain_id_equals: Option<String>,
pub user_profile_name_equals: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.next_token: Option<String>
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
max_results: Option<i32>
Returns a list up to a specified limit.
sort_order: Option<SortOrder>
The sort order for the results. The default is Ascending.
sort_by: Option<AppSortKey>
The parameter by which to sort the results. The default is CreationTime.
domain_id_equals: Option<String>
A parameter to search for the domain ID.
user_profile_name_equals: Option<String>
A parameter to search by user profile name.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApps, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListApps, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListApps
>
Creates a new builder-style object to manufacture ListAppsInput
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
Returns a list up to a specified limit.
The sort order for the results. The default is Ascending.
The parameter by which to sort the results. The default is CreationTime.
A parameter to search for the domain ID.
A parameter to search by user profile name.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListAppsInput
impl Send for ListAppsInput
impl Sync for ListAppsInput
impl Unpin for ListAppsInput
impl UnwindSafe for ListAppsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more