Class: Aws::GreengrassV2::Types::IoTJobAbortConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobAbortConfig
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Note:
When making an API call, you may pass IoTJobAbortConfig 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
},
],
}
Contains a list of criteria that define when and how to cancel a configuration deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#criteria_list ⇒ Array<Types::IoTJobAbortCriteria>
The list of criteria that define when and how to cancel the configuration deployment.
Instance Attribute Details
#criteria_list ⇒ Array<Types::IoTJobAbortCriteria>
The list of criteria that define when and how to cancel the configuration deployment.
2153 2154 2155 2156 2157 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2153 class IoTJobAbortConfig < Struct.new( :criteria_list) SENSITIVE = [] include Aws::Structure end |