Struct aws_sdk_codepipeline::client::fluent_builders::GetPipeline
source · [−]pub struct GetPipeline { /* private fields */ }
Expand description
Fluent builder constructing a request to GetPipeline
.
Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline
.
Implementations
sourceimpl GetPipeline
impl GetPipeline
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetPipeline, AwsResponseRetryClassifier>, SdkError<GetPipelineError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetPipeline, AwsResponseRetryClassifier>, SdkError<GetPipelineError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<GetPipelineOutput, SdkError<GetPipelineError>>
pub async fn send(self) -> Result<GetPipelineOutput, SdkError<GetPipelineError>>
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.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the pipeline for which you want to get information. Pipeline names must be unique under an AWS user account.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the pipeline for which you want to get information. Pipeline names must be unique under an AWS user account.
sourcepub fn version(self, input: i32) -> Self
pub fn version(self, input: i32) -> Self
The version number of the pipeline. If you do not specify a version, defaults to the current version.
sourcepub fn set_version(self, input: Option<i32>) -> Self
pub fn set_version(self, input: Option<i32>) -> Self
The version number of the pipeline. If you do not specify a version, defaults to the current version.
Trait Implementations
sourceimpl Clone for GetPipeline
impl Clone for GetPipeline
sourcefn clone(&self) -> GetPipeline
fn clone(&self) -> GetPipeline
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more