Struct aws_sdk_codepipeline::input::PutActionRevisionInput [−][src]
#[non_exhaustive]pub struct PutActionRevisionInput {
pub pipeline_name: Option<String>,
pub stage_name: Option<String>,
pub action_name: Option<String>,
pub action_revision: Option<ActionRevision>,
}
Expand description
Represents the input of a PutActionRevision
action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_name: Option<String>
The name of the pipeline that starts processing the revision to the source.
stage_name: Option<String>
The name of the stage that contains the action that acts on the revision.
action_name: Option<String>
The name of the action that processes the revision.
action_revision: Option<ActionRevision>
Represents information about the version (or revision) of an action.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutActionRevision, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutActionRevision, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutActionRevision
>
Creates a new builder-style object to manufacture PutActionRevisionInput
The name of the pipeline that starts processing the revision to the source.
The name of the stage that contains the action that acts on the revision.
The name of the action that processes the revision.
Represents information about the version (or revision) of an action.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PutActionRevisionInput
impl Send for PutActionRevisionInput
impl Sync for PutActionRevisionInput
impl Unpin for PutActionRevisionInput
impl UnwindSafe for PutActionRevisionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more