Struct aws_sdk_codepipeline::operation::acknowledge_third_party_job::builders::AcknowledgeThirdPartyJobInputBuilder
source · #[non_exhaustive]pub struct AcknowledgeThirdPartyJobInputBuilder { /* private fields */ }
Expand description
A builder for AcknowledgeThirdPartyJobInput
.
Implementations§
source§impl AcknowledgeThirdPartyJobInputBuilder
impl AcknowledgeThirdPartyJobInputBuilder
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The unique system-generated ID of the job.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The unique system-generated ID of the job.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The unique system-generated ID of the job.
sourcepub fn nonce(self, input: impl Into<String>) -> Self
pub fn nonce(self, input: impl Into<String>) -> Self
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response to a GetThirdPartyJobDetails
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 CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response to a GetThirdPartyJobDetails
request.
sourcepub fn get_nonce(&self) -> &Option<String>
pub fn get_nonce(&self) -> &Option<String>
A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response to a GetThirdPartyJobDetails
request.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
sourcepub fn build(self) -> Result<AcknowledgeThirdPartyJobInput, BuildError>
pub fn build(self) -> Result<AcknowledgeThirdPartyJobInput, BuildError>
Consumes the builder and constructs a AcknowledgeThirdPartyJobInput
.
source§impl AcknowledgeThirdPartyJobInputBuilder
impl AcknowledgeThirdPartyJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AcknowledgeThirdPartyJobOutput, SdkError<AcknowledgeThirdPartyJobError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AcknowledgeThirdPartyJobOutput, SdkError<AcknowledgeThirdPartyJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AcknowledgeThirdPartyJobInputBuilder
impl Clone for AcknowledgeThirdPartyJobInputBuilder
source§fn clone(&self) -> AcknowledgeThirdPartyJobInputBuilder
fn clone(&self) -> AcknowledgeThirdPartyJobInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AcknowledgeThirdPartyJobInputBuilder
impl Default for AcknowledgeThirdPartyJobInputBuilder
source§fn default() -> AcknowledgeThirdPartyJobInputBuilder
fn default() -> AcknowledgeThirdPartyJobInputBuilder
source§impl PartialEq for AcknowledgeThirdPartyJobInputBuilder
impl PartialEq for AcknowledgeThirdPartyJobInputBuilder
source§fn eq(&self, other: &AcknowledgeThirdPartyJobInputBuilder) -> bool
fn eq(&self, other: &AcknowledgeThirdPartyJobInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.