Class: Aws::IoT::Types::AbortConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AbortConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AbortConfig data as a hash:
{
criteria_list: [ # required
{
failure_type: "FAILED", # required, accepts FAILED, REJECTED, TIMED_OUT, ALL
action: "CANCEL", # required, accepts CANCEL
threshold_percentage: 1.0, # required
min_number_of_executed_things: 1, # required
},
],
}
Details of abort criteria to abort the job.
Instance Attribute Summary collapse
-
#criteria_list ⇒ Array<Types::AbortCriteria>
The list of abort criteria to define rules to abort the job.
Instance Attribute Details
#criteria_list ⇒ Array<Types::AbortCriteria>
The list of abort criteria to define rules to abort the job.
31 32 33 34 |
# File 'lib/aws-sdk-iot/types.rb', line 31 class AbortConfig < Struct.new( :criteria_list) include Aws::Structure end |