Struct aws_sdk_pipes::operation::list_pipes::builders::ListPipesFluentBuilder
source · pub struct ListPipesFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ListPipes.
Get the pipes associated with this account. For more information about pipes, see Amazon EventBridge Pipes in the Amazon EventBridge User Guide.
Implementations§
source§impl ListPipesFluentBuilder
impl ListPipesFluentBuilder
sourcepub fn as_input(&self) -> &ListPipesInputBuilder
pub fn as_input(&self) -> &ListPipesInputBuilder
Access the ListPipes as a reference.
sourcepub async fn send(
self
) -> Result<ListPipesOutput, SdkError<ListPipesError, HttpResponse>>
pub async fn send( self ) -> Result<ListPipesOutput, SdkError<ListPipesError, 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 async fn customize(
self
) -> Result<CustomizableOperation<ListPipesOutput, ListPipesError>, SdkError<ListPipesError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ListPipesOutput, ListPipesError>, SdkError<ListPipesError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListPipesPaginator
pub fn into_paginator(self) -> ListPipesPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn name_prefix(self, input: impl Into<String>) -> Self
pub fn name_prefix(self, input: impl Into<String>) -> Self
A value that will return a subset of the pipes associated with this account. For example, "NamePrefix": "ABC" will return all endpoints with "ABC" in the name.
sourcepub fn set_name_prefix(self, input: Option<String>) -> Self
pub fn set_name_prefix(self, input: Option<String>) -> Self
A value that will return a subset of the pipes associated with this account. For example, "NamePrefix": "ABC" will return all endpoints with "ABC" in the name.
sourcepub fn get_name_prefix(&self) -> &Option<String>
pub fn get_name_prefix(&self) -> &Option<String>
A value that will return a subset of the pipes associated with this account. For example, "NamePrefix": "ABC" will return all endpoints with "ABC" in the name.
sourcepub fn desired_state(self, input: RequestedPipeState) -> Self
pub fn desired_state(self, input: RequestedPipeState) -> Self
The state the pipe should be in.
sourcepub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
pub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
The state the pipe should be in.
sourcepub fn get_desired_state(&self) -> &Option<RequestedPipeState>
pub fn get_desired_state(&self) -> &Option<RequestedPipeState>
The state the pipe should be in.
sourcepub fn current_state(self, input: PipeState) -> Self
pub fn current_state(self, input: PipeState) -> Self
The state the pipe is in.
sourcepub fn set_current_state(self, input: Option<PipeState>) -> Self
pub fn set_current_state(self, input: Option<PipeState>) -> Self
The state the pipe is in.
sourcepub fn get_current_state(&self) -> &Option<PipeState>
pub fn get_current_state(&self) -> &Option<PipeState>
The state the pipe is in.
sourcepub fn source_prefix(self, input: impl Into<String>) -> Self
pub fn source_prefix(self, input: impl Into<String>) -> Self
The prefix matching the pipe source.
sourcepub fn set_source_prefix(self, input: Option<String>) -> Self
pub fn set_source_prefix(self, input: Option<String>) -> Self
The prefix matching the pipe source.
sourcepub fn get_source_prefix(&self) -> &Option<String>
pub fn get_source_prefix(&self) -> &Option<String>
The prefix matching the pipe source.
sourcepub fn target_prefix(self, input: impl Into<String>) -> Self
pub fn target_prefix(self, input: impl Into<String>) -> Self
The prefix matching the pipe target.
sourcepub fn set_target_prefix(self, input: Option<String>) -> Self
pub fn set_target_prefix(self, input: Option<String>) -> Self
The prefix matching the pipe target.
sourcepub fn get_target_prefix(&self) -> &Option<String>
pub fn get_target_prefix(&self) -> &Option<String>
The prefix matching the pipe target.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Trait Implementations§
source§impl Clone for ListPipesFluentBuilder
impl Clone for ListPipesFluentBuilder
source§fn clone(&self) -> ListPipesFluentBuilder
fn clone(&self) -> ListPipesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more