Class: Aws::Budgets::Types::DescribeBudgetsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DescribeBudgetsRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DescribeBudgetsRequest data as a hash:
{
account_id: "AccountId", # required
max_results: 1,
next_token: "GenericString",
}
Request of DescribeBudgets
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The
accountId
that is associated with the budgets that you want descriptions of. -
#max_results ⇒ Integer
An optional integer that represents how many entries a paginated response contains.
-
#next_token ⇒ String
The pagination token that you include in your request to indicate the next set of results that you want to retrieve.
Instance Attribute Details
#account_id ⇒ String
The accountId
that is associated with the budgets that you want
descriptions of.
1596 1597 1598 1599 1600 1601 1602 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1596 class DescribeBudgetsRequest < Struct.new( :account_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
An optional integer that represents how many entries a paginated response contains. The maximum is 100.
1596 1597 1598 1599 1600 1601 1602 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1596 class DescribeBudgetsRequest < Struct.new( :account_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token that you include in your request to indicate the next set of results that you want to retrieve.
1596 1597 1598 1599 1600 1601 1602 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1596 class DescribeBudgetsRequest < Struct.new( :account_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |