#[non_exhaustive]pub struct ThirdPartyJobDetailsBuilder { /* private fields */ }
Expand description
A builder for ThirdPartyJobDetails
.
Implementations§
source§impl ThirdPartyJobDetailsBuilder
impl ThirdPartyJobDetailsBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The identifier used to identify the job details in AWS CodePipeline.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The identifier used to identify the job details in AWS CodePipeline.
sourcepub fn data(self, input: ThirdPartyJobData) -> Self
pub fn data(self, input: ThirdPartyJobData) -> Self
The data to be returned by the third party job worker.
sourcepub fn set_data(self, input: Option<ThirdPartyJobData>) -> Self
pub fn set_data(self, input: Option<ThirdPartyJobData>) -> Self
The data to be returned by the third party job worker.
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 AcknowledgeThirdPartyJob
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 AcknowledgeThirdPartyJob
request.
sourcepub fn build(self) -> ThirdPartyJobDetails
pub fn build(self) -> ThirdPartyJobDetails
Consumes the builder and constructs a ThirdPartyJobDetails
.
Trait Implementations§
source§impl Clone for ThirdPartyJobDetailsBuilder
impl Clone for ThirdPartyJobDetailsBuilder
source§fn clone(&self) -> ThirdPartyJobDetailsBuilder
fn clone(&self) -> ThirdPartyJobDetailsBuilder
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 ThirdPartyJobDetailsBuilder
impl Debug for ThirdPartyJobDetailsBuilder
source§impl Default for ThirdPartyJobDetailsBuilder
impl Default for ThirdPartyJobDetailsBuilder
source§fn default() -> ThirdPartyJobDetailsBuilder
fn default() -> ThirdPartyJobDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ThirdPartyJobDetailsBuilder> for ThirdPartyJobDetailsBuilder
impl PartialEq<ThirdPartyJobDetailsBuilder> for ThirdPartyJobDetailsBuilder
source§fn eq(&self, other: &ThirdPartyJobDetailsBuilder) -> bool
fn eq(&self, other: &ThirdPartyJobDetailsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.