pub struct PutApprovalResultInput {
pub action_name: String,
pub pipeline_name: String,
pub result: ApprovalResult,
pub stage_name: String,
pub token: String,
}
Expand description
Represents the input of a PutApprovalResult
action.
Fields§
§action_name: String
The name of the action for which approval is requested.
pipeline_name: String
The name of the pipeline that contains the action.
result: ApprovalResult
Represents information about the result of the approval request.
stage_name: String
The name of the stage that contains the action.
token: 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.
Trait Implementations§
Source§impl Clone for PutApprovalResultInput
impl Clone for PutApprovalResultInput
Source§fn clone(&self) -> PutApprovalResultInput
fn clone(&self) -> PutApprovalResultInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PutApprovalResultInput
impl Debug for PutApprovalResultInput
Source§impl Default for PutApprovalResultInput
impl Default for PutApprovalResultInput
Source§fn default() -> PutApprovalResultInput
fn default() -> PutApprovalResultInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutApprovalResultInput
impl PartialEq for PutApprovalResultInput
Source§impl Serialize for PutApprovalResultInput
impl Serialize for PutApprovalResultInput
impl StructuralPartialEq for PutApprovalResultInput
Auto Trait Implementations§
impl Freeze for PutApprovalResultInput
impl RefUnwindSafe for PutApprovalResultInput
impl Send for PutApprovalResultInput
impl Sync for PutApprovalResultInput
impl Unpin for PutApprovalResultInput
impl UnwindSafe for PutApprovalResultInput
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
Mutably borrows from an owned value. Read more