Class: Aws::States::Types::ExecutionRedrivenEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::ExecutionRedrivenEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about a redriven execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#redrive_count ⇒ Integer
The number of times you've redriven an execution.
Instance Attribute Details
#redrive_count ⇒ Integer
The number of times you've redriven an execution. If you have not
yet redriven an execution, the redriveCount
is 0. This count is
not updated for redrives that failed to start or are pending to be
redriven.
1613 1614 1615 1616 1617 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1613 class ExecutionRedrivenEventDetails < Struct.new( :redrive_count) SENSITIVE = [] include Aws::Structure end |