Struct aws_sdk_codepipeline::types::builders::JobBuilder
source · #[non_exhaustive]pub struct JobBuilder { /* private fields */ }
Expand description
A builder for Job
.
Implementations§
source§impl JobBuilder
impl JobBuilder
sourcepub fn nonce(self, input: impl Into<String>) -> Self
pub fn nonce(self, input: impl Into<String>) -> Self
A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob
request.
sourcepub fn set_nonce(self, input: Option<String>) -> Self
pub fn set_nonce(self, input: Option<String>) -> Self
A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob
request.
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The ID of the AWS account to use when performing the job.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The ID of the AWS account to use when performing the job.
Trait Implementations§
source§impl Clone for JobBuilder
impl Clone for JobBuilder
source§fn clone(&self) -> JobBuilder
fn clone(&self) -> JobBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for JobBuilder
impl Debug for JobBuilder
source§impl Default for JobBuilder
impl Default for JobBuilder
source§fn default() -> JobBuilder
fn default() -> JobBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<JobBuilder> for JobBuilder
impl PartialEq<JobBuilder> for JobBuilder
source§fn eq(&self, other: &JobBuilder) -> bool
fn eq(&self, other: &JobBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.