Class: Aws::States::Types::StateExitedEventDetails

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Contains details about an exit from a state during an execution.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the state.

A name must not contain:

  • whitespace

  • brackets ‘< > { } [ ]`

  • wildcard characters ‘? *`

  • special characters “ “ # % \ ^ | ~ ‘ $ & , ; : / “

  • control characters (‘U+0000-001F`, `U+007F-009F`)

Returns:

  • (String)


1543
1544
1545
1546
1547
# File 'lib/aws-sdk-states/types.rb', line 1543

class StateExitedEventDetails < Struct.new(
  :name,
  :output)
  include Aws::Structure
end

#outputString

The JSON output data of the state.

Returns:

  • (String)


1543
1544
1545
1546
1547
# File 'lib/aws-sdk-states/types.rb', line 1543

class StateExitedEventDetails < Struct.new(
  :name,
  :output)
  include Aws::Structure
end