Struct aws_sdk_codepipeline::types::builders::JobDataBuilder
source · #[non_exhaustive]pub struct JobDataBuilder { /* private fields */ }
Expand description
A builder for JobData
.
Implementations§
source§impl JobDataBuilder
impl JobDataBuilder
sourcepub fn action_type_id(self, input: ActionTypeId) -> Self
pub fn action_type_id(self, input: ActionTypeId) -> Self
Represents information about an action type.
sourcepub fn set_action_type_id(self, input: Option<ActionTypeId>) -> Self
pub fn set_action_type_id(self, input: Option<ActionTypeId>) -> Self
Represents information about an action type.
sourcepub fn get_action_type_id(&self) -> &Option<ActionTypeId>
pub fn get_action_type_id(&self) -> &Option<ActionTypeId>
Represents information about an action type.
sourcepub fn action_configuration(self, input: ActionConfiguration) -> Self
pub fn action_configuration(self, input: ActionConfiguration) -> Self
Represents information about an action configuration.
sourcepub fn set_action_configuration(
self,
input: Option<ActionConfiguration>
) -> Self
pub fn set_action_configuration( self, input: Option<ActionConfiguration> ) -> Self
Represents information about an action configuration.
sourcepub fn get_action_configuration(&self) -> &Option<ActionConfiguration>
pub fn get_action_configuration(&self) -> &Option<ActionConfiguration>
Represents information about an action configuration.
sourcepub fn pipeline_context(self, input: PipelineContext) -> Self
pub fn pipeline_context(self, input: PipelineContext) -> Self
Represents information about a pipeline to a job worker.
Includes pipelineArn
and pipelineExecutionId
for custom jobs.
sourcepub fn set_pipeline_context(self, input: Option<PipelineContext>) -> Self
pub fn set_pipeline_context(self, input: Option<PipelineContext>) -> Self
Represents information about a pipeline to a job worker.
Includes pipelineArn
and pipelineExecutionId
for custom jobs.
sourcepub fn get_pipeline_context(&self) -> &Option<PipelineContext>
pub fn get_pipeline_context(&self) -> &Option<PipelineContext>
Represents information about a pipeline to a job worker.
Includes pipelineArn
and pipelineExecutionId
for custom jobs.
sourcepub fn input_artifacts(self, input: Artifact) -> Self
pub fn input_artifacts(self, input: Artifact) -> Self
Appends an item to input_artifacts
.
To override the contents of this collection use set_input_artifacts
.
The artifact supplied to the job.
sourcepub fn set_input_artifacts(self, input: Option<Vec<Artifact>>) -> Self
pub fn set_input_artifacts(self, input: Option<Vec<Artifact>>) -> Self
The artifact supplied to the job.
sourcepub fn get_input_artifacts(&self) -> &Option<Vec<Artifact>>
pub fn get_input_artifacts(&self) -> &Option<Vec<Artifact>>
The artifact supplied to the job.
sourcepub fn output_artifacts(self, input: Artifact) -> Self
pub fn output_artifacts(self, input: Artifact) -> Self
Appends an item to output_artifacts
.
To override the contents of this collection use set_output_artifacts
.
The output of the job.
sourcepub fn set_output_artifacts(self, input: Option<Vec<Artifact>>) -> Self
pub fn set_output_artifacts(self, input: Option<Vec<Artifact>>) -> Self
The output of the job.
sourcepub fn get_output_artifacts(&self) -> &Option<Vec<Artifact>>
pub fn get_output_artifacts(&self) -> &Option<Vec<Artifact>>
The output of the job.
sourcepub fn artifact_credentials(self, input: AwsSessionCredentials) -> Self
pub fn artifact_credentials(self, input: AwsSessionCredentials) -> Self
Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifacts for the pipeline in CodePipeline.
sourcepub fn set_artifact_credentials(
self,
input: Option<AwsSessionCredentials>
) -> Self
pub fn set_artifact_credentials( self, input: Option<AwsSessionCredentials> ) -> Self
Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifacts for the pipeline in CodePipeline.
sourcepub fn get_artifact_credentials(&self) -> &Option<AwsSessionCredentials>
pub fn get_artifact_credentials(&self) -> &Option<AwsSessionCredentials>
Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifacts for the pipeline in CodePipeline.
sourcepub fn continuation_token(self, input: impl Into<String>) -> Self
pub fn continuation_token(self, input: impl Into<String>) -> Self
A system-generated token, such as a deployment ID, required by a job to continue the job asynchronously.
sourcepub fn set_continuation_token(self, input: Option<String>) -> Self
pub fn set_continuation_token(self, input: Option<String>) -> Self
A system-generated token, such as a deployment ID, required by a job to continue the job asynchronously.
sourcepub fn get_continuation_token(&self) -> &Option<String>
pub fn get_continuation_token(&self) -> &Option<String>
A system-generated token, such as a deployment ID, required by a job to continue the job asynchronously.
sourcepub fn encryption_key(self, input: EncryptionKey) -> Self
pub fn encryption_key(self, input: EncryptionKey) -> Self
Represents information about the key used to encrypt data in the artifact store, such as an KMS key.
sourcepub fn set_encryption_key(self, input: Option<EncryptionKey>) -> Self
pub fn set_encryption_key(self, input: Option<EncryptionKey>) -> Self
Represents information about the key used to encrypt data in the artifact store, such as an KMS key.
sourcepub fn get_encryption_key(&self) -> &Option<EncryptionKey>
pub fn get_encryption_key(&self) -> &Option<EncryptionKey>
Represents information about the key used to encrypt data in the artifact store, such as an KMS key.
Trait Implementations§
source§impl Clone for JobDataBuilder
impl Clone for JobDataBuilder
source§fn clone(&self) -> JobDataBuilder
fn clone(&self) -> JobDataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for JobDataBuilder
impl Debug for JobDataBuilder
source§impl Default for JobDataBuilder
impl Default for JobDataBuilder
source§fn default() -> JobDataBuilder
fn default() -> JobDataBuilder
source§impl PartialEq for JobDataBuilder
impl PartialEq for JobDataBuilder
source§fn eq(&self, other: &JobDataBuilder) -> bool
fn eq(&self, other: &JobDataBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.