Struct aws_sdk_codepipeline::operation::put_action_revision::builders::PutActionRevisionInputBuilder
source · #[non_exhaustive]pub struct PutActionRevisionInputBuilder { /* private fields */ }
Expand description
A builder for PutActionRevisionInput
.
Implementations§
source§impl PutActionRevisionInputBuilder
impl PutActionRevisionInputBuilder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline that starts processing the revision to the source.
This field is required.sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline that starts processing the revision to the source.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name of the pipeline that starts processing the revision to the source.
sourcepub fn stage_name(self, input: impl Into<String>) -> Self
pub fn stage_name(self, input: impl Into<String>) -> Self
The name of the stage that contains the action that acts on the revision.
This field is required.sourcepub fn set_stage_name(self, input: Option<String>) -> Self
pub fn set_stage_name(self, input: Option<String>) -> Self
The name of the stage that contains the action that acts on the revision.
sourcepub fn get_stage_name(&self) -> &Option<String>
pub fn get_stage_name(&self) -> &Option<String>
The name of the stage that contains the action that acts on the revision.
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The name of the action that processes the revision.
This field is required.sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The name of the action that processes the revision.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The name of the action that processes the revision.
sourcepub fn action_revision(self, input: ActionRevision) -> Self
pub fn action_revision(self, input: ActionRevision) -> Self
Represents information about the version (or revision) of an action.
This field is required.sourcepub fn set_action_revision(self, input: Option<ActionRevision>) -> Self
pub fn set_action_revision(self, input: Option<ActionRevision>) -> Self
Represents information about the version (or revision) of an action.
sourcepub fn get_action_revision(&self) -> &Option<ActionRevision>
pub fn get_action_revision(&self) -> &Option<ActionRevision>
Represents information about the version (or revision) of an action.
sourcepub fn build(self) -> Result<PutActionRevisionInput, BuildError>
pub fn build(self) -> Result<PutActionRevisionInput, BuildError>
Consumes the builder and constructs a PutActionRevisionInput
.
source§impl PutActionRevisionInputBuilder
impl PutActionRevisionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutActionRevisionOutput, SdkError<PutActionRevisionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutActionRevisionOutput, SdkError<PutActionRevisionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutActionRevisionInputBuilder
impl Clone for PutActionRevisionInputBuilder
source§fn clone(&self) -> PutActionRevisionInputBuilder
fn clone(&self) -> PutActionRevisionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PutActionRevisionInputBuilder
impl Default for PutActionRevisionInputBuilder
source§fn default() -> PutActionRevisionInputBuilder
fn default() -> PutActionRevisionInputBuilder
source§impl PartialEq for PutActionRevisionInputBuilder
impl PartialEq for PutActionRevisionInputBuilder
source§fn eq(&self, other: &PutActionRevisionInputBuilder) -> bool
fn eq(&self, other: &PutActionRevisionInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutActionRevisionInputBuilder
Auto Trait Implementations§
impl Freeze for PutActionRevisionInputBuilder
impl RefUnwindSafe for PutActionRevisionInputBuilder
impl Send for PutActionRevisionInputBuilder
impl Sync for PutActionRevisionInputBuilder
impl Unpin for PutActionRevisionInputBuilder
impl UnwindSafe for PutActionRevisionInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more