Class: Aws::SESV2::Types::TopicFilter

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

Overview

Used for filtering by a specific topic preference.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#topic_nameString

The name of a topic on which you wish to apply the filter.

Returns:

  • (String)


6964
6965
6966
6967
6968
6969
# File 'lib/aws-sdk-sesv2/types.rb', line 6964

class TopicFilter < Struct.new(
  :topic_name,
  :use_default_if_preference_unavailable)
  SENSITIVE = []
  include Aws::Structure
end

#use_default_if_preference_unavailableBoolean

Notes that the default subscription status should be applied to a contact because the contact has not noted their preference for subscribing to a topic.

Returns:

  • (Boolean)


6964
6965
6966
6967
6968
6969
# File 'lib/aws-sdk-sesv2/types.rb', line 6964

class TopicFilter < Struct.new(
  :topic_name,
  :use_default_if_preference_unavailable)
  SENSITIVE = []
  include Aws::Structure
end