Class: Aws::States::Types::MapRunRedrivenEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunRedrivenEventDetails
- Defined in:
- gems/aws-sdk-states/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.
3215 3216 3217 3218 3219 3220 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3215 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.
3215 3216 3217 3218 3219 3220 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3215 class MapRunRedrivenEventDetails < Struct.new( :map_run_arn, :redrive_count) SENSITIVE = [] include Aws::Structure end |