[][src]Struct rusoto_codepipeline::ThirdPartyJob

pub struct ThirdPartyJob {
    pub client_id: Option<String>,
    pub job_id: Option<String>,
}

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

impl Clone for ThirdPartyJob[src]

impl Debug for ThirdPartyJob[src]

impl Default for ThirdPartyJob[src]

impl<'de> Deserialize<'de> for ThirdPartyJob[src]

impl PartialEq<ThirdPartyJob> for ThirdPartyJob[src]

impl StructuralPartialEq for ThirdPartyJob[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.