Struct aws_sdk_iot::types::StepFunctionsAction
source · #[non_exhaustive]pub struct StepFunctionsAction {
pub execution_name_prefix: Option<String>,
pub state_machine_name: String,
pub role_arn: String,
}
Expand description
Starts execution of a Step Functions state machine.
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_name_prefix: Option<String>
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.
state_machine_name: String
The name of the Step Functions state machine whose execution will be started.
role_arn: String
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
Implementations§
source§impl StepFunctionsAction
impl StepFunctionsAction
sourcepub fn execution_name_prefix(&self) -> Option<&str>
pub fn execution_name_prefix(&self) -> Option<&str>
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID. Step Functions automatically creates a unique name for each state machine execution if one is not provided.
sourcepub fn state_machine_name(&self) -> &str
pub fn state_machine_name(&self) -> &str
The name of the Step Functions state machine whose execution will be started.
source§impl StepFunctionsAction
impl StepFunctionsAction
sourcepub fn builder() -> StepFunctionsActionBuilder
pub fn builder() -> StepFunctionsActionBuilder
Creates a new builder-style object to manufacture StepFunctionsAction
.
Trait Implementations§
source§impl Clone for StepFunctionsAction
impl Clone for StepFunctionsAction
source§fn clone(&self) -> StepFunctionsAction
fn clone(&self) -> StepFunctionsAction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StepFunctionsAction
impl Debug for StepFunctionsAction
source§impl PartialEq for StepFunctionsAction
impl PartialEq for StepFunctionsAction
source§fn eq(&self, other: &StepFunctionsAction) -> bool
fn eq(&self, other: &StepFunctionsAction) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StepFunctionsAction
Auto Trait Implementations§
impl Freeze for StepFunctionsAction
impl RefUnwindSafe for StepFunctionsAction
impl Send for StepFunctionsAction
impl Sync for StepFunctionsAction
impl Unpin for StepFunctionsAction
impl UnwindSafe for StepFunctionsAction
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