Class: Aws::Budgets::Types::CreateBudgetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::CreateBudgetRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-budgets/types.rb
Overview
Request of CreateBudget
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The `accountId` that is associated with the budget.
-
#budget ⇒ Types::Budget
The budget object that you want to create.
-
#notifications_with_subscribers ⇒ Array<Types::NotificationWithSubscribers>
A notification that you want to associate with a budget.
Instance Attribute Details
#account_id ⇒ String
The `accountId` that is associated with the budget.
622 623 624 625 626 627 628 |
# File 'lib/aws-sdk-budgets/types.rb', line 622 class CreateBudgetRequest < Struct.new( :account_id, :budget, :notifications_with_subscribers) SENSITIVE = [] include Aws::Structure end |
#budget ⇒ Types::Budget
The budget object that you want to create.
622 623 624 625 626 627 628 |
# File 'lib/aws-sdk-budgets/types.rb', line 622 class CreateBudgetRequest < Struct.new( :account_id, :budget, :notifications_with_subscribers) SENSITIVE = [] include Aws::Structure end |
#notifications_with_subscribers ⇒ Array<Types::NotificationWithSubscribers>
A notification that you want to associate with a budget. A budget can have up to five notifications, and each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and subscribers in your `CreateBudget` call, Amazon Web Services creates the notifications and subscribers for you.
622 623 624 625 626 627 628 |
# File 'lib/aws-sdk-budgets/types.rb', line 622 class CreateBudgetRequest < Struct.new( :account_id, :budget, :notifications_with_subscribers) SENSITIVE = [] include Aws::Structure end |