You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Budgets::Types::DeleteNotificationRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Budgets::Types::DeleteNotificationRequest
 
- Defined in:
- (unknown)
Overview
    Note:
    
  
When passing DeleteNotificationRequest as input to an Aws::Client method, you can use a vanilla 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
Instance Attribute Summary collapse
- 
  
    
      #account_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The accountIdthat 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.
#budget_name ⇒ String
The name of the budget whose notification you want to delete.
#notification ⇒ Types::Notification
The notification that you want to delete.