pub struct CreateStateMachineInput {
pub definition: String,
pub logging_configuration: Option<LoggingConfiguration>,
pub name: String,
pub role_arn: String,
pub tags: Option<Vec<Tag>>,
pub type_: Option<String>,
}
Fields§
§definition: String
The Amazon States Language definition of the state machine. See Amazon States Language.
logging_configuration: Option<LoggingConfiguration>
Defines what execution history events are logged and where they are logged.
By default, the level
is set to OFF
. For more information see Log Levels in the AWS Step Functions User Guide.
name: String
The name of the state machine.
A name must not contain:
-
white space
-
brackets
< > { } [ ]
-
wildcard characters
? *
-
special characters
" # % \ ^ | ~ ` $ & , ; : /
-
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
role_arn: String
The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
Tags to be added when creating a state machine.
An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.
Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @
.
type_: Option<String>
Determines whether a Standard or Express state machine is created. The default is STANDARD
. You cannot update the type
of a state machine once it has been created.
Trait Implementations§
Source§impl Clone for CreateStateMachineInput
impl Clone for CreateStateMachineInput
Source§fn clone(&self) -> CreateStateMachineInput
fn clone(&self) -> CreateStateMachineInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more