aws_sdk_codepipeline/client/get_pipeline_execution.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetPipelineExecution`](crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetPipelineExecutionOutput`](crate::operation::get_pipeline_execution::GetPipelineExecutionOutput) with field(s):
9 /// - [`pipeline_execution(Option<PipelineExecution>)`](crate::operation::get_pipeline_execution::GetPipelineExecutionOutput::pipeline_execution): <p>Represents information about the execution of a pipeline.</p>
10 /// - On failure, responds with [`SdkError<GetPipelineExecutionError>`](crate::operation::get_pipeline_execution::GetPipelineExecutionError)
11 pub fn get_pipeline_execution(&self) -> crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder {
12 crate::operation::get_pipeline_execution::builders::GetPipelineExecutionFluentBuilder::new(self.handle.clone())
13 }
14}