pub struct StopExecutionInput {
pub cause: Option<String>,
pub error: Option<String>,
pub execution_arn: String,
}
Fields§
§cause: Option<String>
A more detailed explanation of the cause of the failure.
error: Option<String>
The error code of the failure.
execution_arn: String
The Amazon Resource Name (ARN) of the execution to stop.
Trait Implementations§
Source§impl Clone for StopExecutionInput
impl Clone for StopExecutionInput
Source§fn clone(&self) -> StopExecutionInput
fn clone(&self) -> StopExecutionInput
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 Debug for StopExecutionInput
impl Debug for StopExecutionInput
Source§impl Default for StopExecutionInput
impl Default for StopExecutionInput
Source§fn default() -> StopExecutionInput
fn default() -> StopExecutionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for StopExecutionInput
impl PartialEq for StopExecutionInput
Source§impl Serialize for StopExecutionInput
impl Serialize for StopExecutionInput
impl StructuralPartialEq for StopExecutionInput
Auto Trait Implementations§
impl Freeze for StopExecutionInput
impl RefUnwindSafe for StopExecutionInput
impl Send for StopExecutionInput
impl Sync for StopExecutionInput
impl Unpin for StopExecutionInput
impl UnwindSafe for StopExecutionInput
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