Struct aws_sdk_codepipeline::input::PutApprovalResultInput
source · [−]#[non_exhaustive]pub struct PutApprovalResultInput {
pub pipeline_name: Option<String>,
pub stage_name: Option<String>,
pub action_name: Option<String>,
pub result: Option<ApprovalResult>,
pub token: Option<String>,
}
Expand description
Represents the input of a PutApprovalResult
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 contains the action.
stage_name: Option<String>
The name of the stage that contains the action.
action_name: Option<String>
The name of the action for which approval is requested.
result: Option<ApprovalResult>
Represents information about the result of the approval request.
token: Option<String>
The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the GetPipelineState
action. It is used to validate that the approval request corresponding to this token is still valid.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutApprovalResult, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutApprovalResult, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutApprovalResult
>
Creates a new builder-style object to manufacture PutApprovalResultInput
The name of the pipeline that contains the action.
The name of the stage that contains the action.
The name of the action for which approval is requested.
Represents information about the result of the approval request.
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 PutApprovalResultInput
impl Send for PutApprovalResultInput
impl Sync for PutApprovalResultInput
impl Unpin for PutApprovalResultInput
impl UnwindSafe for PutApprovalResultInput
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