Struct aws_sdk_datapipeline::client::fluent_builders::ListPipelines [−][src]
pub struct ListPipelines<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to ListPipelines
.
Lists the pipeline identifiers for all active pipelines that you have permission to access.
POST / HTTP/1.1 Content-Type: application/x-amz-json-1.1 X-Amz-Target: DataPipeline.ListPipelines Content-Length: 14 Host: datapipeline.us-east-1.amazonaws.com X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT Authorization: AuthParams
{}
Status: x-amzn-RequestId: b3104dc5-0734-11e2-af6f-6bc7a6be60d9 Content-Type: application/x-amz-json-1.1 Content-Length: 39 Date: Mon, 12 Nov 2012 17:50:53 GMT
{“PipelineIdList”: [ {“id”: “df-08785951KAKJEXAMPLE”, “name”: “MyPipeline”}, {“id”: “df-08662578ISYEXAMPLE”, “name”: “MySecondPipeline”} ] }
Implementations
impl<C, M, R> ListPipelines<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> ListPipelines<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<ListPipelinesOutput, SdkError<ListPipelinesError>> where
R::Policy: SmithyRetryPolicy<ListPipelinesInputOperationOutputAlias, ListPipelinesOutput, ListPipelinesError, ListPipelinesInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<ListPipelinesOutput, SdkError<ListPipelinesError>> where
R::Policy: SmithyRetryPolicy<ListPipelinesInputOperationOutputAlias, ListPipelinesOutput, ListPipelinesError, ListPipelinesInputOperationRetryAlias>,
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.
The starting point for the results to be returned. For the first call, this value should be empty.
As long as there are more results, continue to call ListPipelines
with
the marker value from the previous call to retrieve the next set of results.
The starting point for the results to be returned. For the first call, this value should be empty.
As long as there are more results, continue to call ListPipelines
with
the marker value from the previous call to retrieve the next set of results.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for ListPipelines<C, M, R>
impl<C, M, R> Unpin for ListPipelines<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for ListPipelines<C, M, R>
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