Struct aws_sdk_codepipeline::operation::acknowledge_third_party_job::builders::AcknowledgeThirdPartyJobFluentBuilder
source · pub struct AcknowledgeThirdPartyJobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to AcknowledgeThirdPartyJob
.
Confirms a job worker has received the specified job. Used for partner actions only.
Implementations§
source§impl AcknowledgeThirdPartyJobFluentBuilder
impl AcknowledgeThirdPartyJobFluentBuilder
sourcepub fn as_input(&self) -> &AcknowledgeThirdPartyJobInputBuilder
pub fn as_input(&self) -> &AcknowledgeThirdPartyJobInputBuilder
Access the AcknowledgeThirdPartyJob as a reference.
sourcepub async fn send(
self,
) -> Result<AcknowledgeThirdPartyJobOutput, SdkError<AcknowledgeThirdPartyJobError, HttpResponse>>
pub async fn send( self, ) -> Result<AcknowledgeThirdPartyJobOutput, SdkError<AcknowledgeThirdPartyJobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<AcknowledgeThirdPartyJobOutput, AcknowledgeThirdPartyJobError, Self>
pub fn customize( self, ) -> CustomizableOperation<AcknowledgeThirdPartyJobOutput, AcknowledgeThirdPartyJobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
Trait Implementations§
source§impl Clone for AcknowledgeThirdPartyJobFluentBuilder
impl Clone for AcknowledgeThirdPartyJobFluentBuilder
source§fn clone(&self) -> AcknowledgeThirdPartyJobFluentBuilder
fn clone(&self) -> AcknowledgeThirdPartyJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for AcknowledgeThirdPartyJobFluentBuilder
impl !RefUnwindSafe for AcknowledgeThirdPartyJobFluentBuilder
impl Send for AcknowledgeThirdPartyJobFluentBuilder
impl Sync for AcknowledgeThirdPartyJobFluentBuilder
impl Unpin for AcknowledgeThirdPartyJobFluentBuilder
impl !UnwindSafe for AcknowledgeThirdPartyJobFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more