Class: Aws::Budgets::Types::DeleteNotificationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DeleteNotificationRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DeleteNotificationRequest data as a hash:
{
account_id: "AccountId", # required
budget_name: "BudgetName", # required
notification: { # required
notification_type: "ACTUAL", # required, accepts ACTUAL, FORECASTED
comparison_operator: "GREATER_THAN", # required, accepts GREATER_THAN, LESS_THAN, EQUAL_TO
threshold: 1.0, # required
threshold_type: "PERCENTAGE", # accepts PERCENTAGE, ABSOLUTE_VALUE
notification_state: "OK", # accepts OK, ALARM
},
}
Request of DeleteNotification
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The
accountId
that is associated with the budget whose notification you want to delete. -
#budget_name ⇒ String
The name of the budget whose notification you want to delete.
-
#notification ⇒ Types::Notification
The notification that you want to delete.
Instance Attribute Details
#account_id ⇒ String
The accountId
that is associated with the budget whose
notification you want to delete.
1137 1138 1139 1140 1141 1142 1143 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1137 class DeleteNotificationRequest < Struct.new( :account_id, :budget_name, :notification) SENSITIVE = [] include Aws::Structure end |
#budget_name ⇒ String
The name of the budget whose notification you want to delete.
1137 1138 1139 1140 1141 1142 1143 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1137 class DeleteNotificationRequest < Struct.new( :account_id, :budget_name, :notification) SENSITIVE = [] include Aws::Structure end |
#notification ⇒ Types::Notification
The notification that you want to delete.
1137 1138 1139 1140 1141 1142 1143 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1137 class DeleteNotificationRequest < Struct.new( :account_id, :budget_name, :notification) SENSITIVE = [] include Aws::Structure end |