Struct aws_sdk_sagemaker::input::ListStudioLifecycleConfigsInput [−][src]
#[non_exhaustive]pub struct ListStudioLifecycleConfigsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub name_contains: Option<String>,
pub app_type_equals: Option<StudioLifecycleConfigAppType>,
pub creation_time_before: Option<Instant>,
pub creation_time_after: Option<Instant>,
pub modified_time_before: Option<Instant>,
pub modified_time_after: Option<Instant>,
pub sort_by: Option<StudioLifecycleConfigSortKey>,
pub sort_order: Option<SortOrder>,
}
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.max_results: Option<i32>
The maximum number of Studio Lifecycle Configurations to return in the response. The default value is 10.
next_token: Option<String>
If the previous call to ListStudioLifecycleConfigs didn't return the full set of Lifecycle Configurations, the call returns a token for getting the next set of Lifecycle Configurations.
name_contains: Option<String>
A string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.
app_type_equals: Option<StudioLifecycleConfigAppType>
A parameter to search for the App Type to which the Lifecycle Configuration is attached.
creation_time_before: Option<Instant>
A filter that returns only Lifecycle Configurations created on or before the specified time.
creation_time_after: Option<Instant>
A filter that returns only Lifecycle Configurations created on or after the specified time.
modified_time_before: Option<Instant>
A filter that returns only Lifecycle Configurations modified before the specified time.
modified_time_after: Option<Instant>
A filter that returns only Lifecycle Configurations modified after the specified time.
sort_by: Option<StudioLifecycleConfigSortKey>
The property used to sort results. The default value is CreationTime.
sort_order: Option<SortOrder>
The sort order. The default value is Descending.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStudioLifecycleConfigs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListStudioLifecycleConfigs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListStudioLifecycleConfigs
>
Creates a new builder-style object to manufacture ListStudioLifecycleConfigsInput
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 Send for ListStudioLifecycleConfigsInput
impl Sync for ListStudioLifecycleConfigsInput
impl Unpin for ListStudioLifecycleConfigsInput
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