Class: Aws::States::Types::MapRunRedrivenEventDetails

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

Overview

Contains details about a Map Run that was redriven.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#map_run_arnString

The Amazon Resource Name (ARN) of a Map Run that was redriven.

Returns:

  • (String)


2930
2931
2932
2933
2934
2935
# File 'lib/aws-sdk-states/types.rb', line 2930

class MapRunRedrivenEventDetails < Struct.new(
  :map_run_arn,
  :redrive_count)
  SENSITIVE = []
  include Aws::Structure
end

#redrive_countInteger

The number of times the Map Run has been redriven at this point in the execution’s history including this event. The redrive count for a redriven Map Run is always greater than 0.

Returns:

  • (Integer)


2930
2931
2932
2933
2934
2935
# File 'lib/aws-sdk-states/types.rb', line 2930

class MapRunRedrivenEventDetails < Struct.new(
  :map_run_arn,
  :redrive_count)
  SENSITIVE = []
  include Aws::Structure
end