#[non_exhaustive]pub struct StartSyncExecutionOutput {Show 14 fields
pub execution_arn: String,
pub state_machine_arn: Option<String>,
pub name: Option<String>,
pub start_date: DateTime,
pub stop_date: DateTime,
pub status: SyncExecutionStatus,
pub error: Option<String>,
pub cause: Option<String>,
pub input: Option<String>,
pub input_details: Option<CloudWatchEventsExecutionDataDetails>,
pub output: Option<String>,
pub output_details: Option<CloudWatchEventsExecutionDataDetails>,
pub trace_header: Option<String>,
pub billing_details: Option<BillingDetails>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.execution_arn: StringThe Amazon Resource Name (ARN) that identifies the execution.
state_machine_arn: Option<String>The Amazon Resource Name (ARN) that identifies the state machine.
name: Option<String>The name of the execution.
start_date: DateTimeThe date the execution is started.
stop_date: DateTimeIf the execution has already ended, the date the execution stopped.
status: SyncExecutionStatusThe current status of the execution.
error: Option<String>The error code of the failure.
cause: Option<String>A more detailed explanation of the cause of the failure.
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>Provides details about execution input or output.
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>Provides details about execution input or output.
trace_header: Option<String>The X-Ray trace header that was passed to the execution.
billing_details: Option<BillingDetails>An object that describes workflow billing details, including billed duration and memory use.
Implementations§
source§impl StartSyncExecutionOutput
impl StartSyncExecutionOutput
sourcepub fn execution_arn(&self) -> &str
pub fn execution_arn(&self) -> &str
The Amazon Resource Name (ARN) that identifies the execution.
sourcepub fn state_machine_arn(&self) -> Option<&str>
pub fn state_machine_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) that identifies the state machine.
sourcepub fn start_date(&self) -> &DateTime
pub fn start_date(&self) -> &DateTime
The date the execution is started.
sourcepub fn stop_date(&self) -> &DateTime
pub fn stop_date(&self) -> &DateTime
If the execution has already ended, the date the execution stopped.
sourcepub fn status(&self) -> &SyncExecutionStatus
pub fn status(&self) -> &SyncExecutionStatus
The current status of the execution.
sourcepub fn input(&self) -> Option<&str>
pub fn input(&self) -> Option<&str>
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.
sourcepub fn input_details(&self) -> Option<&CloudWatchEventsExecutionDataDetails>
pub fn input_details(&self) -> Option<&CloudWatchEventsExecutionDataDetails>
Provides details about execution input or output.
sourcepub fn output(&self) -> Option<&str>
pub fn output(&self) -> Option<&str>
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.
sourcepub fn output_details(&self) -> Option<&CloudWatchEventsExecutionDataDetails>
pub fn output_details(&self) -> Option<&CloudWatchEventsExecutionDataDetails>
Provides details about execution input or output.
sourcepub fn trace_header(&self) -> Option<&str>
pub fn trace_header(&self) -> Option<&str>
The X-Ray trace header that was passed to the execution.
sourcepub fn billing_details(&self) -> Option<&BillingDetails>
pub fn billing_details(&self) -> Option<&BillingDetails>
An object that describes workflow billing details, including billed duration and memory use.
source§impl StartSyncExecutionOutput
impl StartSyncExecutionOutput
sourcepub fn builder() -> StartSyncExecutionOutputBuilder
pub fn builder() -> StartSyncExecutionOutputBuilder
Creates a new builder-style object to manufacture StartSyncExecutionOutput.
Trait Implementations§
source§impl Clone for StartSyncExecutionOutput
impl Clone for StartSyncExecutionOutput
source§fn clone(&self) -> StartSyncExecutionOutput
fn clone(&self) -> StartSyncExecutionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartSyncExecutionOutput
impl Debug for StartSyncExecutionOutput
source§impl PartialEq for StartSyncExecutionOutput
impl PartialEq for StartSyncExecutionOutput
source§fn eq(&self, other: &StartSyncExecutionOutput) -> bool
fn eq(&self, other: &StartSyncExecutionOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for StartSyncExecutionOutput
impl RequestId for StartSyncExecutionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for StartSyncExecutionOutput
Auto Trait Implementations§
impl Freeze for StartSyncExecutionOutput
impl RefUnwindSafe for StartSyncExecutionOutput
impl Send for StartSyncExecutionOutput
impl Sync for StartSyncExecutionOutput
impl Unpin for StartSyncExecutionOutput
impl UnwindSafe for StartSyncExecutionOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more