#[non_exhaustive]pub struct PutJobFailureResultInput {
pub job_id: Option<String>,
pub failure_details: Option<FailureDetails>,
}
Expand description
Represents the input of a PutJobFailureResult
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 that failed. This is the same ID returned from PollForJobs
.
failure_details: Option<FailureDetails>
The details about the failure of a job.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutJobFailureResult, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutJobFailureResult, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutJobFailureResult
>
Creates a new builder-style object to manufacture PutJobFailureResultInput
The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs
.
The details about the failure of a job.
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 PutJobFailureResultInput
impl Send for PutJobFailureResultInput
impl Sync for PutJobFailureResultInput
impl Unpin for PutJobFailureResultInput
impl UnwindSafe for PutJobFailureResultInput
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