Class: Aws::Budgets::Types::Subscriber
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::Subscriber
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
The subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon SNS topic or an email address.
For example, an email subscriber has the following parameters:
A
subscriptionType
ofEMAIL
An
address
ofexample@example.com
Constant Summary collapse
- SENSITIVE =
[:address]
Instance Attribute Summary collapse
-
#address ⇒ String
The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.
-
#subscription_type ⇒ String
The type of notification that Amazon Web Services sends to a subscriber.
Instance Attribute Details
#address ⇒ String
The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.
When you create a subscriber, the value of Address
can't contain
line breaks.
1754 1755 1756 1757 1758 1759 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1754 class Subscriber < Struct.new( :subscription_type, :address) SENSITIVE = [:address] include Aws::Structure end |
#subscription_type ⇒ String
The type of notification that Amazon Web Services sends to a subscriber.
1754 1755 1756 1757 1758 1759 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1754 class Subscriber < Struct.new( :subscription_type, :address) SENSITIVE = [:address] include Aws::Structure end |