You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::States::Types::UpdateStateMachineInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateStateMachineInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  state_machine_arn: "Arn", # required
  definition: "Definition",
  role_arn: "Arn",
  logging_configuration: {
    level: "ALL", # accepts ALL, ERROR, FATAL, OFF
    include_execution_data: false,
    destinations: [
      {
        cloud_watch_logs_log_group: {
          log_group_arn: "Arn",
        },
      },
    ],
  },
  tracing_configuration: {
    enabled: false,
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#definitionString

The Amazon States Language definition of the state machine. See Amazon States Language.

Returns:

  • (String)

    The Amazon States Language definition of the state machine.

#logging_configurationTypes::LoggingConfiguration

The LoggingConfiguration data type is used to set CloudWatch Logs options.

Returns:

#role_arnString

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

Returns:

  • (String)

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

#state_machine_arnString

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

Returns:

  • (String)

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

#tracing_configurationTypes::TracingConfiguration

Selects whether AWS X-Ray tracing is enabled.

Returns: