pub struct ListStudioLifecycleConfigs { /* private fields */ }
Expand description
Fluent builder constructing a request to ListStudioLifecycleConfigs
.
Lists the Studio Lifecycle Configurations in your Amazon Web Services Account.
Implementations§
source§impl ListStudioLifecycleConfigs
impl ListStudioLifecycleConfigs
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListStudioLifecycleConfigs, AwsResponseRetryClassifier>, SdkError<ListStudioLifecycleConfigsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListStudioLifecycleConfigs, AwsResponseRetryClassifier>, SdkError<ListStudioLifecycleConfigsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListStudioLifecycleConfigsOutput, SdkError<ListStudioLifecycleConfigsError>>
pub async fn send(
self
) -> Result<ListStudioLifecycleConfigsOutput, SdkError<ListStudioLifecycleConfigsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListStudioLifecycleConfigsPaginator
pub fn into_paginator(self) -> ListStudioLifecycleConfigsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of Studio Lifecycle Configurations to return in the response. The default value is 10.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of Studio Lifecycle Configurations to return in the response. The default value is 10.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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.
sourcepub fn name_contains(self, input: impl Into<String>) -> Self
pub fn name_contains(self, input: impl Into<String>) -> Self
A string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.
sourcepub fn set_name_contains(self, input: Option<String>) -> Self
pub fn set_name_contains(self, input: Option<String>) -> Self
A string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.
sourcepub fn app_type_equals(self, input: StudioLifecycleConfigAppType) -> Self
pub fn app_type_equals(self, input: StudioLifecycleConfigAppType) -> Self
A parameter to search for the App Type to which the Lifecycle Configuration is attached.
sourcepub fn set_app_type_equals(
self,
input: Option<StudioLifecycleConfigAppType>
) -> Self
pub fn set_app_type_equals(
self,
input: Option<StudioLifecycleConfigAppType>
) -> Self
A parameter to search for the App Type to which the Lifecycle Configuration is attached.
sourcepub fn creation_time_before(self, input: DateTime) -> Self
pub fn creation_time_before(self, input: DateTime) -> Self
A filter that returns only Lifecycle Configurations created on or before the specified time.
sourcepub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
A filter that returns only Lifecycle Configurations created on or before the specified time.
sourcepub fn creation_time_after(self, input: DateTime) -> Self
pub fn creation_time_after(self, input: DateTime) -> Self
A filter that returns only Lifecycle Configurations created on or after the specified time.
sourcepub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
A filter that returns only Lifecycle Configurations created on or after the specified time.
sourcepub fn modified_time_before(self, input: DateTime) -> Self
pub fn modified_time_before(self, input: DateTime) -> Self
A filter that returns only Lifecycle Configurations modified before the specified time.
sourcepub fn set_modified_time_before(self, input: Option<DateTime>) -> Self
pub fn set_modified_time_before(self, input: Option<DateTime>) -> Self
A filter that returns only Lifecycle Configurations modified before the specified time.
sourcepub fn modified_time_after(self, input: DateTime) -> Self
pub fn modified_time_after(self, input: DateTime) -> Self
A filter that returns only Lifecycle Configurations modified after the specified time.
sourcepub fn set_modified_time_after(self, input: Option<DateTime>) -> Self
pub fn set_modified_time_after(self, input: Option<DateTime>) -> Self
A filter that returns only Lifecycle Configurations modified after the specified time.
sourcepub fn sort_by(self, input: StudioLifecycleConfigSortKey) -> Self
pub fn sort_by(self, input: StudioLifecycleConfigSortKey) -> Self
The property used to sort results. The default value is CreationTime.
sourcepub fn set_sort_by(self, input: Option<StudioLifecycleConfigSortKey>) -> Self
pub fn set_sort_by(self, input: Option<StudioLifecycleConfigSortKey>) -> Self
The property used to sort results. The default value is CreationTime.
sourcepub fn sort_order(self, input: SortOrder) -> Self
pub fn sort_order(self, input: SortOrder) -> Self
The sort order. The default value is Descending.
sourcepub fn set_sort_order(self, input: Option<SortOrder>) -> Self
pub fn set_sort_order(self, input: Option<SortOrder>) -> Self
The sort order. The default value is Descending.
Trait Implementations§
source§impl Clone for ListStudioLifecycleConfigs
impl Clone for ListStudioLifecycleConfigs
source§fn clone(&self) -> ListStudioLifecycleConfigs
fn clone(&self) -> ListStudioLifecycleConfigs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more