pub struct AcknowledgeJobInput {
pub job_id: String,
pub nonce: String,
}
Expand description
Represents the input of an AcknowledgeJob action.
Fields§
§job_id: String
The unique system-generated ID of the job for which you want to confirm receipt.
nonce: String
A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response of the PollForJobs request that returned this job.
Trait Implementations§
Source§impl Clone for AcknowledgeJobInput
impl Clone for AcknowledgeJobInput
Source§fn clone(&self) -> AcknowledgeJobInput
fn clone(&self) -> AcknowledgeJobInput
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 AcknowledgeJobInput
impl Debug for AcknowledgeJobInput
Source§impl Default for AcknowledgeJobInput
impl Default for AcknowledgeJobInput
Source§fn default() -> AcknowledgeJobInput
fn default() -> AcknowledgeJobInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for AcknowledgeJobInput
impl PartialEq for AcknowledgeJobInput
Source§impl Serialize for AcknowledgeJobInput
impl Serialize for AcknowledgeJobInput
impl StructuralPartialEq for AcknowledgeJobInput
Auto Trait Implementations§
impl Freeze for AcknowledgeJobInput
impl RefUnwindSafe for AcknowledgeJobInput
impl Send for AcknowledgeJobInput
impl Sync for AcknowledgeJobInput
impl Unpin for AcknowledgeJobInput
impl UnwindSafe for AcknowledgeJobInput
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