pub struct SendPipelineExecutionStepFailureRequest {
pub callback_token: String,
pub client_request_token: Option<String>,
pub failure_reason: Option<String>,
}
Fields§
§callback_token: String
The pipeline generated token from the Amazon SQS queue.
client_request_token: Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.
failure_reason: Option<String>
A message describing why the step failed.
Trait Implementations§
Source§impl Clone for SendPipelineExecutionStepFailureRequest
impl Clone for SendPipelineExecutionStepFailureRequest
Source§fn clone(&self) -> SendPipelineExecutionStepFailureRequest
fn clone(&self) -> SendPipelineExecutionStepFailureRequest
Returns a duplicate 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 SendPipelineExecutionStepFailureRequest
impl Default for SendPipelineExecutionStepFailureRequest
Source§fn default() -> SendPipelineExecutionStepFailureRequest
fn default() -> SendPipelineExecutionStepFailureRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SendPipelineExecutionStepFailureRequest
impl PartialEq for SendPipelineExecutionStepFailureRequest
Source§fn eq(&self, other: &SendPipelineExecutionStepFailureRequest) -> bool
fn eq(&self, other: &SendPipelineExecutionStepFailureRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SendPipelineExecutionStepFailureRequest
Auto Trait Implementations§
impl Freeze for SendPipelineExecutionStepFailureRequest
impl RefUnwindSafe for SendPipelineExecutionStepFailureRequest
impl Send for SendPipelineExecutionStepFailureRequest
impl Sync for SendPipelineExecutionStepFailureRequest
impl Unpin for SendPipelineExecutionStepFailureRequest
impl UnwindSafe for SendPipelineExecutionStepFailureRequest
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