Class: Aws::Budgets::Types::DescribeBudgetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DescribeBudgetRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DescribeBudgetRequest data as a hash:
{
account_id: "AccountId", # required
budget_name: "BudgetName", # required
}
Request of DescribeBudget
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The
accountId
that is associated with the budget that you want a description of. -
#budget_name ⇒ String
The name of the budget that you want a description of.
Instance Attribute Details
#account_id ⇒ String
The accountId
that is associated with the budget that you want a
description of.
1551 1552 1553 1554 1555 1556 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1551 class DescribeBudgetRequest < Struct.new( :account_id, :budget_name) SENSITIVE = [] include Aws::Structure end |
#budget_name ⇒ String
The name of the budget that you want a description of.
1551 1552 1553 1554 1555 1556 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1551 class DescribeBudgetRequest < Struct.new( :account_id, :budget_name) SENSITIVE = [] include Aws::Structure end |