Class: Aws::States::Types::StateEnteredEventDetails

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

Overview

Contains details about a state entered during an execution.

Constant Summary collapse

SENSITIVE =
[:input]

Instance Attribute Summary collapse

Instance Attribute Details

#inputString

The string that contains the JSON input data for the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Returns:

  • (String)


3476
3477
3478
3479
3480
3481
3482
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3476

class StateEnteredEventDetails < Struct.new(
  :name,
  :input,
  :input_details)
  SENSITIVE = [:input]
  include Aws::Structure
end

#input_detailsTypes::HistoryEventExecutionDataDetails

Contains details about the input for an execution history event.



3476
3477
3478
3479
3480
3481
3482
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3476

class StateEnteredEventDetails < Struct.new(
  :name,
  :input,
  :input_details)
  SENSITIVE = [:input]
  include Aws::Structure
end

#nameString

The name of the state.

Returns:

  • (String)


3476
3477
3478
3479
3480
3481
3482
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3476

class StateEnteredEventDetails < Struct.new(
  :name,
  :input,
  :input_details)
  SENSITIVE = [:input]
  include Aws::Structure
end