Struct aws_sdk_codepipeline::input::AcknowledgeThirdPartyJobInput [−][src]
#[non_exhaustive]pub struct AcknowledgeThirdPartyJobInput {
pub job_id: Option<String>,
pub nonce: Option<String>,
pub client_token: Option<String>,
}
Expand description
Represents the input of an AcknowledgeThirdPartyJob 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.
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 to a GetThirdPartyJobDetails request.
client_token: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AcknowledgeThirdPartyJob, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AcknowledgeThirdPartyJob, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AcknowledgeThirdPartyJob
>
Creates a new builder-style object to manufacture AcknowledgeThirdPartyJobInput
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 to a GetThirdPartyJobDetails request.
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
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 Send for AcknowledgeThirdPartyJobInput
impl Sync for AcknowledgeThirdPartyJobInput
impl Unpin for AcknowledgeThirdPartyJobInput
impl UnwindSafe for AcknowledgeThirdPartyJobInput
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