Struct aws_sdk_codepipeline::model::ThirdPartyJobData
source · [−]#[non_exhaustive]pub struct ThirdPartyJobData { /* private fields */ }
Expand description
Represents information about the job data for a partner action.
Implementations
sourceimpl ThirdPartyJobData
impl ThirdPartyJobData
sourcepub fn action_type_id(&self) -> Option<&ActionTypeId>
pub fn action_type_id(&self) -> Option<&ActionTypeId>
Represents information about an action type.
sourcepub fn action_configuration(&self) -> Option<&ActionConfiguration>
pub fn action_configuration(&self) -> Option<&ActionConfiguration>
Represents information about an action configuration.
sourcepub fn pipeline_context(&self) -> Option<&PipelineContext>
pub fn pipeline_context(&self) -> Option<&PipelineContext>
Represents information about a pipeline to a job worker.
Does not include pipelineArn
and pipelineExecutionId
for ThirdParty jobs.
sourcepub fn input_artifacts(&self) -> Option<&[Artifact]>
pub fn input_artifacts(&self) -> Option<&[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.
sourcepub fn output_artifacts(&self) -> Option<&[Artifact]>
pub fn output_artifacts(&self) -> Option<&[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.
sourcepub fn artifact_credentials(&self) -> Option<&AwsSessionCredentials>
pub fn artifact_credentials(&self) -> 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.
sourcepub fn continuation_token(&self) -> Option<&str>
pub fn continuation_token(&self) -> Option<&str>
A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires to continue the job asynchronously.
sourcepub fn encryption_key(&self) -> Option<&EncryptionKey>
pub fn encryption_key(&self) -> 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.
sourceimpl ThirdPartyJobData
impl ThirdPartyJobData
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ThirdPartyJobData
.
Trait Implementations
sourceimpl Clone for ThirdPartyJobData
impl Clone for ThirdPartyJobData
sourcefn clone(&self) -> ThirdPartyJobData
fn clone(&self) -> ThirdPartyJobData
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more