Class: Aws::CostExplorer::Types::Subscriber

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-costexplorer/types.rb

Overview

Note:

When making an API call, you may pass Subscriber data as a hash:

{
  address: "SubscriberAddress",
  type: "EMAIL", # accepts EMAIL, SNS
  status: "CONFIRMED", # accepts CONFIRMED, DECLINED
}

The recipient of ‘AnomalySubscription` notifications.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The email address or SNS Amazon Resource Name (ARN), depending on the ‘Type`.

Returns:

  • (String)


6484
6485
6486
6487
6488
6489
6490
# File 'lib/aws-sdk-costexplorer/types.rb', line 6484

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

#statusString

Indicates if the subscriber accepts the notifications.

Returns:

  • (String)


6484
6485
6486
6487
6488
6489
6490
# File 'lib/aws-sdk-costexplorer/types.rb', line 6484

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

#typeString

The notification delivery channel.

Returns:

  • (String)


6484
6485
6486
6487
6488
6489
6490
# File 'lib/aws-sdk-costexplorer/types.rb', line 6484

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