Class: Aws::SESV2::Types::MessageTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::MessageTag
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Contains the name and value of a tag that you apply to an email. You can use message tags when you publish email sending events.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the message tag.
-
#value ⇒ String
The value of the message tag.
Instance Attribute Details
#name ⇒ String
The name of the message tag. The message tag name has to meet the following criteria:
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
It can contain no more than 256 characters.
5104 5105 5106 5107 5108 5109 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5104 class MessageTag < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the message tag. The message tag value has to meet the following criteria:
It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
It can contain no more than 256 characters.
5104 5105 5106 5107 5108 5109 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5104 class MessageTag < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |