#[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§
source§impl PutApprovalResultInput
impl PutApprovalResultInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline that contains the action.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the stage that contains the action.
sourcepub fn action_name(&self) -> Option<&str>
pub fn action_name(&self) -> Option<&str>
The name of the action for which approval is requested.
sourcepub fn result(&self) -> Option<&ApprovalResult>
pub fn result(&self) -> Option<&ApprovalResult>
Represents information about the result of the approval request.
source§impl PutApprovalResultInput
impl PutApprovalResultInput
sourcepub fn builder() -> PutApprovalResultInputBuilder
pub fn builder() -> PutApprovalResultInputBuilder
Creates a new builder-style object to manufacture PutApprovalResultInput
.
Trait Implementations§
source§impl Clone for PutApprovalResultInput
impl Clone for PutApprovalResultInput
source§fn clone(&self) -> PutApprovalResultInput
fn clone(&self) -> PutApprovalResultInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutApprovalResultInput
impl Debug for PutApprovalResultInput
source§impl PartialEq for PutApprovalResultInput
impl PartialEq for PutApprovalResultInput
source§fn eq(&self, other: &PutApprovalResultInput) -> bool
fn eq(&self, other: &PutApprovalResultInput) -> bool
self
and other
values to be equal, and is used
by ==
.