Struct rusoto_stepfunctions::UpdateStateMachineInput[][src]

pub struct UpdateStateMachineInput {
    pub definition: Option<String>,
    pub role_arn: Option<String>,
    pub state_machine_arn: String,
}

Fields

The Amazon States Language definition of the state machine.

The Amazon Resource Name (ARN) of the IAM role of the state machine.

The Amazon Resource Name (ARN) of the state machine.

Trait Implementations

impl Default for UpdateStateMachineInput
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateStateMachineInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateStateMachineInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateStateMachineInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations