Amazon.DataPipeline.AmazonDataPipelineClient.DescribePipelinesAsync C# (CSharp) Method

DescribePipelinesAsync() public method

Retrieves metadata about one or more pipelines. The information retrieved includes the name of the pipeline, the pipeline identifier, its current state, and the user account that owns the pipeline. Using account credentials, you can retrieve metadata about pipelines that you or your IAM users have created. If you are using an IAM user account, you can retrieve metadata about only those pipelines for which you have read permissions.

To retrieve the full pipeline definition instead of metadata about the pipeline, call GetPipelineDefinition.

/// An internal service error occurred. /// /// The request was not valid. Verify that your request was properly formatted, that the /// signature was generated with the correct credentials, and that you haven't exceeded /// any of the service limits for your account. /// /// The specified pipeline has been deleted. /// /// The specified pipeline was not found. Verify that you used the correct user and account /// identifiers. ///
public DescribePipelinesAsync ( List pipelineIds, System cancellationToken = default(CancellationToken) ) : Task
pipelineIds List The IDs of the pipelines to describe. You can pass as many as 25 identifiers in a single call. To obtain pipeline IDs, call ListPipelines.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<DescribePipelinesResponse> DescribePipelinesAsync(List<string> pipelineIds, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new DescribePipelinesRequest();
            request.PipelineIds = pipelineIds;
            return DescribePipelinesAsync(request, cancellationToken);
        }

Same methods

AmazonDataPipelineClient::DescribePipelinesAsync ( DescribePipelinesRequest request, System cancellationToken = default(CancellationToken) ) : Task