Class: Aws::Budgets::Types::ActionThreshold
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::ActionThreshold
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass ActionThreshold data as a hash:
{
action_threshold_value: 1.0, # required
action_threshold_type: "PERCENTAGE", # required, accepts PERCENTAGE, ABSOLUTE_VALUE
}
The trigger threshold of the action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_threshold_type ⇒ String
The type of threshold for a notification.
-
#action_threshold_value ⇒ Float
The threshold of a notification.
Instance Attribute Details
#action_threshold_type ⇒ String
The type of threshold for a notification.
151 152 153 154 155 156 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 151 class ActionThreshold < Struct.new( :action_threshold_value, :action_threshold_type) SENSITIVE = [] include Aws::Structure end |
#action_threshold_value ⇒ Float
The threshold of a notification.
151 152 153 154 155 156 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 151 class ActionThreshold < Struct.new( :action_threshold_value, :action_threshold_type) SENSITIVE = [] include Aws::Structure end |