Struct aws_sdk_pipes::input::ListPipesInput
source · #[non_exhaustive]pub struct ListPipesInput { /* private fields */ }
Implementations§
source§impl ListPipesInput
impl ListPipesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipes, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipes, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListPipes
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListPipesInput
.
source§impl ListPipesInput
impl ListPipesInput
sourcepub fn name_prefix(&self) -> Option<&str>
pub fn name_prefix(&self) -> Option<&str>
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) -> Option<&RequestedPipeState>
pub fn desired_state(&self) -> Option<&RequestedPipeState>
The state the pipe should be in.
sourcepub fn current_state(&self) -> Option<&PipeState>
pub fn current_state(&self) -> Option<&PipeState>
The state the pipe is in.
sourcepub fn source_prefix(&self) -> Option<&str>
pub fn source_prefix(&self) -> Option<&str>
The prefix matching the pipe source.
sourcepub fn target_prefix(&self) -> Option<&str>
pub fn target_prefix(&self) -> Option<&str>
The prefix matching the pipe target.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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 ListPipesInput
impl Clone for ListPipesInput
source§fn clone(&self) -> ListPipesInput
fn clone(&self) -> ListPipesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListPipesInput
impl Debug for ListPipesInput
source§impl PartialEq<ListPipesInput> for ListPipesInput
impl PartialEq<ListPipesInput> for ListPipesInput
source§fn eq(&self, other: &ListPipesInput) -> bool
fn eq(&self, other: &ListPipesInput) -> bool
self
and other
values to be equal, and is used
by ==
.