Class: Aws::Budgets::Types::DescribeNotificationsForBudgetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DescribeNotificationsForBudgetRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
When making an API call, you may pass DescribeNotificationsForBudgetRequest data as a hash:
{
account_id: "AccountId", # required
budget_name: "BudgetName", # required
max_results: 1,
next_token: "GenericString",
}
Request of DescribeNotificationsForBudget
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The
accountId
that is associated with the budget whose notifications you want descriptions of. -
#budget_name ⇒ String
The name of the budget whose notifications 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 budget whose
notifications you want descriptions of.
1653 1654 1655 1656 1657 1658 1659 1660 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1653 class DescribeNotificationsForBudgetRequest < Struct.new( :account_id, :budget_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#budget_name ⇒ String
The name of the budget whose notifications you want descriptions of.
1653 1654 1655 1656 1657 1658 1659 1660 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1653 class DescribeNotificationsForBudgetRequest < Struct.new( :account_id, :budget_name, :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.
1653 1654 1655 1656 1657 1658 1659 1660 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1653 class DescribeNotificationsForBudgetRequest < Struct.new( :account_id, :budget_name, :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.
1653 1654 1655 1656 1657 1658 1659 1660 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1653 class DescribeNotificationsForBudgetRequest < Struct.new( :account_id, :budget_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |