Class: Aws::SES::Types::MessageTag

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

Overview

Contains the name and value of a tag that you can provide to ‘SendEmail` or `SendRawEmail` to apply to an email.

Message tags, which you use with configuration sets, enable you to publish email sending events. For information about using configuration sets, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the tag. The name must meet the following requirements:

  • Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Contain 256 characters or fewer.

Returns:

  • (String)


2891
2892
2893
2894
2895
2896
# File 'lib/aws-sdk-ses/types.rb', line 2891

class MessageTag < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the tag. The value must meet the following requirements:

  • Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Contain 256 characters or fewer.

Returns:

  • (String)


2891
2892
2893
2894
2895
2896
# File 'lib/aws-sdk-ses/types.rb', line 2891

class MessageTag < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end