Class: Aws::Budgets::Types::DeleteSubscriberRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::DeleteSubscriberRequest
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
Note:
When making an API call, you may pass DeleteSubscriberRequest 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
},
subscriber: { # required
subscription_type: "SNS", # required, accepts SNS, EMAIL
address: "SubscriberAddress", # required
},
}
Request of DeleteSubscriber
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The
accountId
that is associated with the budget whose subscriber you want to delete. -
#budget_name ⇒ String
The name of the budget whose subscriber you want to delete.
-
#notification ⇒ Types::Notification
The notification whose subscriber you want to delete.
-
#subscriber ⇒ Types::Subscriber
The subscriber that you want to delete.
Instance Attribute Details
#account_id ⇒ String
The accountId
that is associated with the budget whose subscriber
you want to delete.
1187 1188 1189 1190 1191 1192 1193 1194 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1187 class DeleteSubscriberRequest < Struct.new( :account_id, :budget_name, :notification, :subscriber) SENSITIVE = [] include Aws::Structure end |
#budget_name ⇒ String
The name of the budget whose subscriber you want to delete.
1187 1188 1189 1190 1191 1192 1193 1194 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1187 class DeleteSubscriberRequest < Struct.new( :account_id, :budget_name, :notification, :subscriber) SENSITIVE = [] include Aws::Structure end |
#notification ⇒ Types::Notification
The notification whose subscriber you want to delete.
1187 1188 1189 1190 1191 1192 1193 1194 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1187 class DeleteSubscriberRequest < Struct.new( :account_id, :budget_name, :notification, :subscriber) SENSITIVE = [] include Aws::Structure end |
#subscriber ⇒ Types::Subscriber
The subscriber that you want to delete.
1187 1188 1189 1190 1191 1192 1193 1194 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1187 class DeleteSubscriberRequest < Struct.new( :account_id, :budget_name, :notification, :subscriber) SENSITIVE = [] include Aws::Structure end |