pub struct ThirdPartyJob {
pub client_id: Option<String>,
pub job_id: Option<String>,
}
Expand description
A response to a PollForThirdPartyJobs
request returned by AWS CodePipeline when there is a job to be worked on by a partner action.
Fields§
§client_id: Option<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: Option<String>
The identifier used to identify the job in AWS CodePipeline.
Trait Implementations§
Source§impl Clone for ThirdPartyJob
impl Clone for ThirdPartyJob
Source§fn clone(&self) -> ThirdPartyJob
fn clone(&self) -> ThirdPartyJob
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 ThirdPartyJob
impl Debug for ThirdPartyJob
Source§impl Default for ThirdPartyJob
impl Default for ThirdPartyJob
Source§fn default() -> ThirdPartyJob
fn default() -> ThirdPartyJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThirdPartyJob
impl<'de> Deserialize<'de> for ThirdPartyJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ThirdPartyJob
impl PartialEq for ThirdPartyJob
impl StructuralPartialEq for ThirdPartyJob
Auto Trait Implementations§
impl Freeze for ThirdPartyJob
impl RefUnwindSafe for ThirdPartyJob
impl Send for ThirdPartyJob
impl Sync for ThirdPartyJob
impl Unpin for ThirdPartyJob
impl UnwindSafe for ThirdPartyJob
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