Struct aws_sdk_codepipeline::operation::put_action_revision::builders::PutActionRevisionFluentBuilder
source · pub struct PutActionRevisionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to PutActionRevision
.
Provides information to CodePipeline about new revisions to a source.
Implementations§
source§impl PutActionRevisionFluentBuilder
impl PutActionRevisionFluentBuilder
sourcepub fn as_input(&self) -> &PutActionRevisionInputBuilder
pub fn as_input(&self) -> &PutActionRevisionInputBuilder
Access the PutActionRevision as a reference.
sourcepub async fn send(
self
) -> Result<PutActionRevisionOutput, SdkError<PutActionRevisionError, HttpResponse>>
pub async fn send( self ) -> Result<PutActionRevisionOutput, SdkError<PutActionRevisionError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<PutActionRevisionOutput, PutActionRevisionError, Self>
pub fn customize( self ) -> CustomizableOperation<PutActionRevisionOutput, PutActionRevisionError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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.
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.
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.
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.
Trait Implementations§
source§impl Clone for PutActionRevisionFluentBuilder
impl Clone for PutActionRevisionFluentBuilder
source§fn clone(&self) -> PutActionRevisionFluentBuilder
fn clone(&self) -> PutActionRevisionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more