Class: Aws::States::Types::MapRunRedrivenEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunRedrivenEventDetails
- 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
-
#map_run_arn ⇒ String
The Amazon Resource Name (ARN) of a Map Run that was redriven.
-
#redrive_count ⇒ Integer
The number of times the Map Run has been redriven at this point in the execution’s history including this event.
Instance Attribute Details
#map_run_arn ⇒ String
The Amazon Resource Name (ARN) of a Map Run that was redriven.
3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-states/types.rb', line 3122 class MapRunRedrivenEventDetails < Struct.new( :map_run_arn, :redrive_count) SENSITIVE = [] include Aws::Structure end |
#redrive_count ⇒ Integer
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.
3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-states/types.rb', line 3122 class MapRunRedrivenEventDetails < Struct.new( :map_run_arn, :redrive_count) SENSITIVE = [] include Aws::Structure end |