Struct aws_sdk_nimble::operation::list_studio_components::builders::ListStudioComponentsFluentBuilder
source · pub struct ListStudioComponentsFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ListStudioComponents.
Lists the StudioComponents in a studio.
Implementations§
source§impl ListStudioComponentsFluentBuilder
impl ListStudioComponentsFluentBuilder
sourcepub fn as_input(&self) -> &ListStudioComponentsInputBuilder
pub fn as_input(&self) -> &ListStudioComponentsInputBuilder
Access the ListStudioComponents as a reference.
sourcepub async fn send(
self
) -> Result<ListStudioComponentsOutput, SdkError<ListStudioComponentsError, HttpResponse>>
pub async fn send( self ) -> Result<ListStudioComponentsOutput, SdkError<ListStudioComponentsError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<ListStudioComponentsOutput, ListStudioComponentsError, Self>
pub fn customize( self ) -> CustomizableOperation<ListStudioComponentsOutput, ListStudioComponentsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListStudioComponentsPaginator
pub fn into_paginator(self) -> ListStudioComponentsPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a PaginationStream.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The max number of results to return in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The max number of results to return in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The max number of results to return in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of results, or null if there are no more results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of results, or null if there are no more results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of results, or null if there are no more results.
sourcepub fn states(self, input: StudioComponentState) -> Self
pub fn states(self, input: StudioComponentState) -> Self
Appends an item to states.
To override the contents of this collection use set_states.
Filters the request to studio components that are in one of the given states.
sourcepub fn set_states(self, input: Option<Vec<StudioComponentState>>) -> Self
pub fn set_states(self, input: Option<Vec<StudioComponentState>>) -> Self
Filters the request to studio components that are in one of the given states.
sourcepub fn get_states(&self) -> &Option<Vec<StudioComponentState>>
pub fn get_states(&self) -> &Option<Vec<StudioComponentState>>
Filters the request to studio components that are in one of the given states.
sourcepub fn set_studio_id(self, input: Option<String>) -> Self
pub fn set_studio_id(self, input: Option<String>) -> Self
The studio ID.
sourcepub fn get_studio_id(&self) -> &Option<String>
pub fn get_studio_id(&self) -> &Option<String>
The studio ID.
sourcepub fn types(self, input: StudioComponentType) -> Self
pub fn types(self, input: StudioComponentType) -> Self
Appends an item to types.
To override the contents of this collection use set_types.
Filters the request to studio components that are of one of the given types.
sourcepub fn set_types(self, input: Option<Vec<StudioComponentType>>) -> Self
pub fn set_types(self, input: Option<Vec<StudioComponentType>>) -> Self
Filters the request to studio components that are of one of the given types.
sourcepub fn get_types(&self) -> &Option<Vec<StudioComponentType>>
pub fn get_types(&self) -> &Option<Vec<StudioComponentType>>
Filters the request to studio components that are of one of the given types.
Trait Implementations§
source§impl Clone for ListStudioComponentsFluentBuilder
impl Clone for ListStudioComponentsFluentBuilder
source§fn clone(&self) -> ListStudioComponentsFluentBuilder
fn clone(&self) -> ListStudioComponentsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more