Struct aws_sdk_codepipeline::input::ListPipelinesInput [−][src]
#[non_exhaustive]pub struct ListPipelinesInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Expand description
Represents the input of a ListPipelines
action.
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.next_token: Option<String>
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
max_results: Option<i32>
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipelines, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipelines, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListPipelines
>
Creates a new builder-style object to manufacture ListPipelinesInput
An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.
The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.
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 RefUnwindSafe for ListPipelinesInput
impl Send for ListPipelinesInput
impl Sync for ListPipelinesInput
impl Unpin for ListPipelinesInput
impl UnwindSafe for ListPipelinesInput
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