pub struct ExecutionListItem {
pub execution_arn: String,
pub name: String,
pub start_date: f64,
pub state_machine_arn: String,
pub status: String,
pub stop_date: Option<f64>,
}
Expand description
Contains details about an execution.
Fields§
§execution_arn: String
The Amazon Resource Name (ARN) that id entifies the execution.
name: String
The name of the execution.
A name must not contain:
-
white space
-
brackets
< > { } [ ]
-
wildcard characters
? *
-
special characters
" # % \ ^ | ~ ` $ & , ; : /
-
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
start_date: f64
The date the execution started.
state_machine_arn: String
The Amazon Resource Name (ARN) of the executed state machine.
status: String
The current status of the execution.
stop_date: Option<f64>
If the execution already ended, the date the execution stopped.
Trait Implementations§
Source§impl Clone for ExecutionListItem
impl Clone for ExecutionListItem
Source§fn clone(&self) -> ExecutionListItem
fn clone(&self) -> ExecutionListItem
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 ExecutionListItem
impl Debug for ExecutionListItem
Source§impl Default for ExecutionListItem
impl Default for ExecutionListItem
Source§fn default() -> ExecutionListItem
fn default() -> ExecutionListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionListItem
impl<'de> Deserialize<'de> for ExecutionListItem
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 ExecutionListItem
impl PartialEq for ExecutionListItem
impl StructuralPartialEq for ExecutionListItem
Auto Trait Implementations§
impl Freeze for ExecutionListItem
impl RefUnwindSafe for ExecutionListItem
impl Send for ExecutionListItem
impl Sync for ExecutionListItem
impl Unpin for ExecutionListItem
impl UnwindSafe for ExecutionListItem
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