Class: Aws::Deadline::Types::ResponseBudgetAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::ResponseBudgetAction
- Defined in:
- gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb
Overview
The details of a budget action.
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#description ⇒ String
The budget action description.
-
#threshold_percentage ⇒ Float
The percentage threshold for the budget.
-
#type ⇒ String
The action taken on the budget once scheduling stops.
Instance Attribute Details
#description ⇒ String
The budget action description.
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
6831 6832 6833 6834 6835 6836 6837 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6831 class ResponseBudgetAction < Struct.new( :type, :threshold_percentage, :description) SENSITIVE = [:description] include Aws::Structure end |
#threshold_percentage ⇒ Float
The percentage threshold for the budget.
6831 6832 6833 6834 6835 6836 6837 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6831 class ResponseBudgetAction < Struct.new( :type, :threshold_percentage, :description) SENSITIVE = [:description] include Aws::Structure end |
#type ⇒ String
The action taken on the budget once scheduling stops.
6831 6832 6833 6834 6835 6836 6837 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 6831 class ResponseBudgetAction < Struct.new( :type, :threshold_percentage, :description) SENSITIVE = [:description] include Aws::Structure end |