pub struct StepFunctionsAction {
pub execution_name_prefix: Option<String>,
pub role_arn: String,
pub state_machine_name: String,
}Expand description
Starts execution of a Step Functions state machine.
Fields§
§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.
role_arn: StringThe ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
state_machine_name: StringThe name of the Step Functions state machine whose execution will be started.
Trait Implementations§
Source§impl Clone for StepFunctionsAction
impl Clone for StepFunctionsAction
Source§fn clone(&self) -> StepFunctionsAction
fn clone(&self) -> StepFunctionsAction
Returns a duplicate 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 Default for StepFunctionsAction
impl Default for StepFunctionsAction
Source§fn default() -> StepFunctionsAction
fn default() -> StepFunctionsAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StepFunctionsAction
impl<'de> Deserialize<'de> for StepFunctionsAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StepFunctionsAction
impl PartialEq for StepFunctionsAction
Source§impl Serialize for StepFunctionsAction
impl Serialize for StepFunctionsAction
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
Mutably borrows from an owned value. Read more