pub struct AcknowledgeThirdPartyJobInput {
pub client_token: String,
pub job_id: String,
pub nonce: String,
}
Expand description
Represents the input of an AcknowledgeThirdPartyJob action.
Fields§
§client_token: String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
job_id: String
The unique system-generated ID of the job.
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 to a GetThirdPartyJobDetails request.
Trait Implementations§
Source§impl Clone for AcknowledgeThirdPartyJobInput
impl Clone for AcknowledgeThirdPartyJobInput
Source§fn clone(&self) -> AcknowledgeThirdPartyJobInput
fn clone(&self) -> AcknowledgeThirdPartyJobInput
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 Default for AcknowledgeThirdPartyJobInput
impl Default for AcknowledgeThirdPartyJobInput
Source§fn default() -> AcknowledgeThirdPartyJobInput
fn default() -> AcknowledgeThirdPartyJobInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for AcknowledgeThirdPartyJobInput
impl PartialEq for AcknowledgeThirdPartyJobInput
Source§fn eq(&self, other: &AcknowledgeThirdPartyJobInput) -> bool
fn eq(&self, other: &AcknowledgeThirdPartyJobInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AcknowledgeThirdPartyJobInput
Auto Trait Implementations§
impl Freeze for AcknowledgeThirdPartyJobInput
impl RefUnwindSafe for AcknowledgeThirdPartyJobInput
impl Send for AcknowledgeThirdPartyJobInput
impl Sync for AcknowledgeThirdPartyJobInput
impl Unpin for AcknowledgeThirdPartyJobInput
impl UnwindSafe for AcknowledgeThirdPartyJobInput
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