Struct cfn::aws::stepfunctions::StateMachineProperties [] [src]

pub struct StateMachineProperties {
    pub definition_string: Value<String>,
    pub role_arn: Value<String>,
    pub state_machine_name: Option<Value<String>>,
}

Properties for the StateMachine resource.

Fields

Property DefinitionString.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property RoleArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property StateMachineName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for StateMachineProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for StateMachineProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for StateMachineProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<StateMachineProperties> for StateMachine
[src]

[src]

Performs the conversion.

Auto Trait Implementations