Class: Aws::Budgets::Types::Subscriber

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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:

Constant Summary collapse

SENSITIVE =
[:address]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

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.

Returns:

  • (String)


1690
1691
1692
1693
1694
1695
# File 'lib/aws-sdk-budgets/types.rb', line 1690

class Subscriber < Struct.new(
  :subscription_type,
  :address)
  SENSITIVE = [:address]
  include Aws::Structure
end

#subscription_typeString

The type of notification that Amazon Web Services sends to a subscriber.

Returns:

  • (String)


1690
1691
1692
1693
1694
1695
# File 'lib/aws-sdk-budgets/types.rb', line 1690

class Subscriber < Struct.new(
  :subscription_type,
  :address)
  SENSITIVE = [:address]
  include Aws::Structure
end