Class: Aws::Budgets::Types::DescribeBudgetActionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DescribeBudgetActionRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DescribeBudgetActionRequest data as a hash:
{
account_id: "AccountId", # required
budget_name: "BudgetName", # required
action_id: "ActionId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account ID of the user.
-
#action_id ⇒ String
A system-generated universally unique identifier (UUID) for the action.
-
#budget_name ⇒ String
A string that represents the budget name.
Instance Attribute Details
#account_id ⇒ String
The account ID of the user. It should be a 12-digit number.
1213 1214 1215 1216 1217 1218 1219 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1213 class DescribeBudgetActionRequest < Struct.new( :account_id, :budget_name, :action_id) SENSITIVE = [] include Aws::Structure end |
#action_id ⇒ String
A system-generated universally unique identifier (UUID) for the action.
1213 1214 1215 1216 1217 1218 1219 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1213 class DescribeBudgetActionRequest < Struct.new( :account_id, :budget_name, :action_id) SENSITIVE = [] include Aws::Structure end |
#budget_name ⇒ String
A string that represents the budget name. The ":" and "\" characters aren't allowed.
1213 1214 1215 1216 1217 1218 1219 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1213 class DescribeBudgetActionRequest < Struct.new( :account_id, :budget_name, :action_id) SENSITIVE = [] include Aws::Structure end |