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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[:output]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the state.

A name must not contain:

  • white space

  • brackets < > \{ \} [ ]

  • wildcard characters ? *

  • special characters " # % \ ^ | ~ ` $ & , ; : /

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

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

Returns:

  • (String)


3516
3517
3518
3519
3520
3521
3522
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3516

class StateExitedEventDetails < Struct.new(
  :name,
  :output,
  :output_details)
  SENSITIVE = [:output]
  include Aws::Structure
end

#outputString

The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Returns:

  • (String)


3516
3517
3518
3519
3520
3521
3522
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3516

class StateExitedEventDetails < Struct.new(
  :name,
  :output,
  :output_details)
  SENSITIVE = [:output]
  include Aws::Structure
end

#output_detailsTypes::HistoryEventExecutionDataDetails

Contains details about the output of an execution history event.



3516
3517
3518
3519
3520
3521
3522
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3516

class StateExitedEventDetails < Struct.new(
  :name,
  :output,
  :output_details)
  SENSITIVE = [:output]
  include Aws::Structure
end