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 ==
.