aws_sdk_codepipeline/client/get_pipeline_execution.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetPipelineExecution`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`pipeline_name(impl Into<String>)`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::pipeline_name) / [`set_pipeline_name(Option<String>)`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::set_pipeline_name):<br>required: **true**<br><p>The name of the pipeline about which you want to get execution details.</p><br>
/// - [`pipeline_execution_id(impl Into<String>)`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::pipeline_execution_id) / [`set_pipeline_execution_id(Option<String>)`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::set_pipeline_execution_id):<br>required: **true**<br><p>The ID of the pipeline execution about which you want to get execution details.</p><br>
/// - On success, responds with [`GetPipelineExecutionOutput`](crate::operation::get_pipeline_execution::GetPipelineExecutionOutput) with field(s):
/// - [`pipeline_execution(Option<PipelineExecution>)`](crate::operation::get_pipeline_execution::GetPipelineExecutionOutput::pipeline_execution): <p>Represents information about the execution of a pipeline.</p>
/// - On failure, responds with [`SdkError<GetPipelineExecutionError>`](crate::operation::get_pipeline_execution::GetPipelineExecutionError)
pub fn get_pipeline_execution(&self) -> crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder {
crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::new(self.handle.clone())
}
}