#[non_exhaustive]pub struct CreateStateMachineInput {
pub name: Option<String>,
pub definition: Option<String>,
pub role_arn: Option<String>,
pub type: Option<StateMachineType>,
pub logging_configuration: Option<LoggingConfiguration>,
pub tags: Option<Vec<Tag>>,
pub tracing_configuration: Option<TracingConfiguration>,
pub publish: Option<bool>,
pub version_description: Option<String>,
}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.name: Option<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 _.
definition: Option<String>The Amazon States Language definition of the state machine. See Amazon States Language.
role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
type: Option<StateMachineType>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.
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 Step Functions User Guide.
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 Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.
Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
tracing_configuration: Option<TracingConfiguration>Selects whether X-Ray tracing is enabled.
publish: Option<bool>Set to true to publish the first version of the state machine during creation. The default is false.
version_description: Option<String>Sets description about the state machine version. You can only set the description if the publish parameter is set to true. Otherwise, if you set versionDescription, but publish to false, this API action throws ValidationException.
Implementations§
source§impl CreateStateMachineInput
impl CreateStateMachineInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
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 _.
sourcepub fn definition(&self) -> Option<&str>
pub fn definition(&self) -> Option<&str>
The Amazon States Language definition of the state machine. See Amazon States Language.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
sourcepub fn type(&self) -> Option<&StateMachineType>
pub fn type(&self) -> Option<&StateMachineType>
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.
sourcepub fn logging_configuration(&self) -> Option<&LoggingConfiguration>
pub fn logging_configuration(&self) -> 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 Step Functions User Guide.
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 Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.
Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn tracing_configuration(&self) -> Option<&TracingConfiguration>
pub fn tracing_configuration(&self) -> Option<&TracingConfiguration>
Selects whether X-Ray tracing is enabled.
sourcepub fn publish(&self) -> Option<bool>
pub fn publish(&self) -> Option<bool>
Set to true to publish the first version of the state machine during creation. The default is false.
sourcepub fn version_description(&self) -> Option<&str>
pub fn version_description(&self) -> Option<&str>
Sets description about the state machine version. You can only set the description if the publish parameter is set to true. Otherwise, if you set versionDescription, but publish to false, this API action throws ValidationException.
source§impl CreateStateMachineInput
impl CreateStateMachineInput
sourcepub fn builder() -> CreateStateMachineInputBuilder
pub fn builder() -> CreateStateMachineInputBuilder
Creates a new builder-style object to manufacture CreateStateMachineInput.
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 moresource§impl Debug for CreateStateMachineInput
impl Debug for CreateStateMachineInput
source§impl PartialEq for CreateStateMachineInput
impl PartialEq for CreateStateMachineInput
source§fn eq(&self, other: &CreateStateMachineInput) -> bool
fn eq(&self, other: &CreateStateMachineInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateStateMachineInput
Auto Trait Implementations§
impl Freeze for CreateStateMachineInput
impl RefUnwindSafe for CreateStateMachineInput
impl Send for CreateStateMachineInput
impl Sync for CreateStateMachineInput
impl Unpin for CreateStateMachineInput
impl UnwindSafe for CreateStateMachineInput
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