Struct aws_sdk_iot::types::StepFunctionsAction
source · #[non_exhaustive]pub struct StepFunctionsAction { /* private fields */ }
Expand description
Starts execution of a Step Functions state machine.
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) -> Option<&str>
pub fn state_machine_name(&self) -> Option<&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
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 StepFunctionsAction
impl Debug for StepFunctionsAction
source§impl PartialEq<StepFunctionsAction> for StepFunctionsAction
impl PartialEq<StepFunctionsAction> for StepFunctionsAction
source§fn eq(&self, other: &StepFunctionsAction) -> bool
fn eq(&self, other: &StepFunctionsAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StepFunctionsAction
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more