[][src]Struct rusoto_codepipeline::JobData

pub struct JobData {
    pub action_configuration: Option<ActionConfiguration>,
    pub action_type_id: Option<ActionTypeId>,
    pub artifact_credentials: Option<AWSSessionCredentials>,
    pub continuation_token: Option<String>,
    pub encryption_key: Option<EncryptionKey>,
    pub input_artifacts: Option<Vec<Artifact>>,
    pub output_artifacts: Option<Vec<Artifact>>,
    pub pipeline_context: Option<PipelineContext>,
}

Represents additional information about a job required for a job worker to complete the job.

Fields

Represents information about an action configuration.

Represents information about an action type.

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the Amazon S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to continue the job asynchronously.

Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.

The artifact supplied to the job.

The output of the job.

Represents information about a pipeline to a job worker.

Trait Implementations

impl Clone for JobData
[src]

Performs copy-assignment from source. Read more

impl Default for JobData
[src]

impl PartialEq<JobData> for JobData
[src]

impl Debug for JobData
[src]

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

Auto Trait Implementations

impl Send for JobData

impl Sync for JobData

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self