pub struct DescribeExecutionOutput {
pub execution_arn: String,
pub input: Option<String>,
pub input_details: Option<CloudWatchEventsExecutionDataDetails>,
pub name: Option<String>,
pub output: Option<String>,
pub output_details: Option<CloudWatchEventsExecutionDataDetails>,
pub start_date: f64,
pub state_machine_arn: String,
pub status: String,
pub stop_date: Option<f64>,
pub trace_header: Option<String>,
}
Fields§
§execution_arn: String
The Amazon Resource Name (ARN) that identifies the execution.
input: Option<String>
The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
input_details: Option<CloudWatchEventsExecutionDataDetails>
§name: Option<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 _.
output: Option<String>
The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
This field is set only if the execution succeeds. If the execution fails, this field is null.
output_details: Option<CloudWatchEventsExecutionDataDetails>
§start_date: f64
The date the execution is started.
state_machine_arn: String
The Amazon Resource Name (ARN) of the executed stated machine.
status: String
The current status of the execution.
stop_date: Option<f64>
If the execution has already ended, the date the execution stopped.
trace_header: Option<String>
The AWS X-Ray trace header that was passed to the execution.
Trait Implementations§
Source§impl Clone for DescribeExecutionOutput
impl Clone for DescribeExecutionOutput
Source§fn clone(&self) -> DescribeExecutionOutput
fn clone(&self) -> DescribeExecutionOutput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more