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 ==
.