Class: Aws::Budgets::Types::DeleteBudgetActionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DeleteBudgetActionRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DeleteBudgetActionRequest 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.
968 969 970 971 972 973 974 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 968 class DeleteBudgetActionRequest < 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.
968 969 970 971 972 973 974 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 968 class DeleteBudgetActionRequest < 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.
968 969 970 971 972 973 974 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 968 class DeleteBudgetActionRequest < Struct.new( :account_id, :budget_name, :action_id) SENSITIVE = [] include Aws::Structure end |