pub struct DescribeStateMachineForExecutionOutput {
pub definition: String,
pub logging_configuration: Option<LoggingConfiguration>,
pub name: String,
pub role_arn: String,
pub state_machine_arn: String,
pub update_date: f64,
}
Fields§
§definition: String
The Amazon States Language definition of the state machine. See Amazon States Language.
logging_configuration: Option<LoggingConfiguration>
§name: String
The name of the state machine associated with the execution.
role_arn: String
The Amazon Resource Name (ARN) of the IAM role of the State Machine for the execution.
state_machine_arn: String
The Amazon Resource Name (ARN) of the state machine associated with the execution.
update_date: f64
The date and time the state machine associated with an execution was updated. For a newly created state machine, this is the creation date.
Trait Implementations§
Source§impl Clone for DescribeStateMachineForExecutionOutput
impl Clone for DescribeStateMachineForExecutionOutput
Source§fn clone(&self) -> DescribeStateMachineForExecutionOutput
fn clone(&self) -> DescribeStateMachineForExecutionOutput
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 DescribeStateMachineForExecutionOutput
impl Default for DescribeStateMachineForExecutionOutput
Source§fn default() -> DescribeStateMachineForExecutionOutput
fn default() -> DescribeStateMachineForExecutionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeStateMachineForExecutionOutput
impl<'de> Deserialize<'de> for DescribeStateMachineForExecutionOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeStateMachineForExecutionOutput
impl PartialEq for DescribeStateMachineForExecutionOutput
Source§fn eq(&self, other: &DescribeStateMachineForExecutionOutput) -> bool
fn eq(&self, other: &DescribeStateMachineForExecutionOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeStateMachineForExecutionOutput
Auto Trait Implementations§
impl Freeze for DescribeStateMachineForExecutionOutput
impl RefUnwindSafe for DescribeStateMachineForExecutionOutput
impl Send for DescribeStateMachineForExecutionOutput
impl Sync for DescribeStateMachineForExecutionOutput
impl Unpin for DescribeStateMachineForExecutionOutput
impl UnwindSafe for DescribeStateMachineForExecutionOutput
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