Struct rusoto_codepipeline::ThirdPartyJobData [] [src]

pub struct ThirdPartyJobData {
    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 information about the job data for a partner action.

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.

The encryption key used to encrypt and decrypt data in the artifact store for the pipeline, such as an AWS Key Management Service (AWS KMS) key. This is optional and might not be present.

The name of the artifact that will be worked upon by the action, if any. This name might be system-generated, such as "MyApp", or might be defined by the user when the action is created. The input artifact name must match the name of an output artifact generated by an action in an earlier action or stage of the pipeline.

The name of the artifact that will be the result of the action, if any. This name might be system-generated, such as "MyBuiltApp", or might be defined by the user when the action is created.

Represents information about a pipeline to a job worker.

Trait Implementations

impl Default for ThirdPartyJobData
[src]

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

impl Debug for ThirdPartyJobData
[src]

Formats the value using the given formatter.

impl Clone for ThirdPartyJobData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more