#[non_exhaustive]pub struct GetPipelineInputBuilder { /* private fields */ }
Expand description
A builder for GetPipelineInput
.
Implementations§
source§impl GetPipelineInputBuilder
impl GetPipelineInputBuilder
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.
sourcepub fn build(self) -> Result<GetPipelineInput, BuildError>
pub fn build(self) -> Result<GetPipelineInput, BuildError>
Consumes the builder and constructs a GetPipelineInput
.
Trait Implementations§
source§impl Clone for GetPipelineInputBuilder
impl Clone for GetPipelineInputBuilder
source§fn clone(&self) -> GetPipelineInputBuilder
fn clone(&self) -> GetPipelineInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetPipelineInputBuilder
impl Debug for GetPipelineInputBuilder
source§impl Default for GetPipelineInputBuilder
impl Default for GetPipelineInputBuilder
source§fn default() -> GetPipelineInputBuilder
fn default() -> GetPipelineInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetPipelineInputBuilder> for GetPipelineInputBuilder
impl PartialEq<GetPipelineInputBuilder> for GetPipelineInputBuilder
source§fn eq(&self, other: &GetPipelineInputBuilder) -> bool
fn eq(&self, other: &GetPipelineInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.