[][src]Struct rusoto_codepipeline::ThirdPartyJobData

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

action_configuration: Option<ActionConfiguration>

Represents information about an action configuration.

action_type_id: Option<ActionTypeId>

Represents information about an action type.

artifact_credentials: Option<AWSSessionCredentials>

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 S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

continuation_token: Option<String>

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

encryption_key: Option<EncryptionKey>

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.

input_artifacts: Option<Vec<Artifact>>

The name of the artifact that is worked on by the action, if any. This name might be system-generated, such as "MyApp", or it 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.

output_artifacts: Option<Vec<Artifact>>

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

pipeline_context: Option<PipelineContext>

Represents information about a pipeline to a job worker.

Does not include pipelineArn and pipelineExecutionId for ThirdParty jobs.

Trait Implementations

impl Clone for ThirdPartyJobData[src]

impl Debug for ThirdPartyJobData[src]

impl Default for ThirdPartyJobData[src]

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

impl PartialEq<ThirdPartyJobData> for ThirdPartyJobData[src]

impl StructuralPartialEq for ThirdPartyJobData[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.