pub struct PutThirdPartyJobFailureResultInput {
pub client_token: String,
pub failure_details: FailureDetails,
pub job_id: String,
}
Expand description
Represents the input of a PutThirdPartyJobFailureResult
action.
Fields§
§client_token: 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.
failure_details: FailureDetails
Represents information about failure details.
job_id: String
The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs
.
Trait Implementations§
Source§impl Clone for PutThirdPartyJobFailureResultInput
impl Clone for PutThirdPartyJobFailureResultInput
Source§fn clone(&self) -> PutThirdPartyJobFailureResultInput
fn clone(&self) -> PutThirdPartyJobFailureResultInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for PutThirdPartyJobFailureResultInput
impl Default for PutThirdPartyJobFailureResultInput
Source§fn default() -> PutThirdPartyJobFailureResultInput
fn default() -> PutThirdPartyJobFailureResultInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutThirdPartyJobFailureResultInput
impl PartialEq for PutThirdPartyJobFailureResultInput
Source§fn eq(&self, other: &PutThirdPartyJobFailureResultInput) -> bool
fn eq(&self, other: &PutThirdPartyJobFailureResultInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutThirdPartyJobFailureResultInput
Auto Trait Implementations§
impl Freeze for PutThirdPartyJobFailureResultInput
impl RefUnwindSafe for PutThirdPartyJobFailureResultInput
impl Send for PutThirdPartyJobFailureResultInput
impl Sync for PutThirdPartyJobFailureResultInput
impl Unpin for PutThirdPartyJobFailureResultInput
impl UnwindSafe for PutThirdPartyJobFailureResultInput
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
Mutably borrows from an owned value. Read more