Struct rusoto_codepipeline::JobData[][src]

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 Default for JobData
[src]

Returns the "default value" for a type. Read more

impl Debug for JobData
[src]

Formats the value using the given formatter. Read more

impl Clone for JobData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JobData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for JobData

impl Sync for JobData