#[non_exhaustive]pub struct StartSyncExecutionInput {
pub state_machine_arn: Option<String>,
pub name: Option<String>,
pub input: Option<String>,
pub trace_header: Option<String>,
}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.state_machine_arn: Option<String>The Amazon Resource Name (ARN) of the state machine to execute.
name: Option<String>The name of the execution.
input: Option<String>The string that contains the JSON input data for the execution, for example:
"input": "{\"first_name\" : \"test\"}"
If you don't include any JSON input data, you still must include the two braces, for example: "input": "{}"
Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
trace_header: Option<String>Passes the X-Ray trace header. The trace header can also be passed in the request payload.
Implementations§
source§impl StartSyncExecutionInput
impl StartSyncExecutionInput
sourcepub fn state_machine_arn(&self) -> Option<&str>
pub fn state_machine_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the state machine to execute.
sourcepub fn input(&self) -> Option<&str>
pub fn input(&self) -> Option<&str>
The string that contains the JSON input data for the execution, for example:
"input": "{\"first_name\" : \"test\"}"
If you don't include any JSON input data, you still must include the two braces, for example: "input": "{}"
Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
sourcepub fn trace_header(&self) -> Option<&str>
pub fn trace_header(&self) -> Option<&str>
Passes the X-Ray trace header. The trace header can also be passed in the request payload.
source§impl StartSyncExecutionInput
impl StartSyncExecutionInput
sourcepub fn builder() -> StartSyncExecutionInputBuilder
pub fn builder() -> StartSyncExecutionInputBuilder
Creates a new builder-style object to manufacture StartSyncExecutionInput.
Trait Implementations§
source§impl Clone for StartSyncExecutionInput
impl Clone for StartSyncExecutionInput
source§fn clone(&self) -> StartSyncExecutionInput
fn clone(&self) -> StartSyncExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartSyncExecutionInput
impl Debug for StartSyncExecutionInput
source§impl PartialEq for StartSyncExecutionInput
impl PartialEq for StartSyncExecutionInput
source§fn eq(&self, other: &StartSyncExecutionInput) -> bool
fn eq(&self, other: &StartSyncExecutionInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartSyncExecutionInput
Auto Trait Implementations§
impl Freeze for StartSyncExecutionInput
impl RefUnwindSafe for StartSyncExecutionInput
impl Send for StartSyncExecutionInput
impl Sync for StartSyncExecutionInput
impl Unpin for StartSyncExecutionInput
impl UnwindSafe for StartSyncExecutionInput
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