Struct aws_sdk_codepipeline::input::AcknowledgeJobInput [−][src]
#[non_exhaustive]pub struct AcknowledgeJobInput {
pub job_id: Option<String>,
pub nonce: Option<String>,
}
Expand description
Represents the input of an AcknowledgeJob action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.job_id: Option<String>
The unique system-generated ID of the job for which you want to confirm receipt.
nonce: Option<String>
A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response of the PollForJobs
request that returned this job.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AcknowledgeJob, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AcknowledgeJob, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AcknowledgeJob
>
Creates a new builder-style object to manufacture AcknowledgeJobInput
The unique system-generated ID of the job for which you want to confirm receipt.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AcknowledgeJobInput
impl Send for AcknowledgeJobInput
impl Sync for AcknowledgeJobInput
impl Unpin for AcknowledgeJobInput
impl UnwindSafe for AcknowledgeJobInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more