Class: Aws::Pinpoint::Types::TagsModel

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

Overview

Specifies the tags (keys and values) for an application, campaign, message template, or segment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tagsHash<String,String>

A string-to-string map of key-value pairs that defines the tags for an application, campaign, message template, or segment. Each of these resources can have a maximum of 50 tags.

Each tag consists of a required tag key and an associated tag value. The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.

Returns:

  • (Hash<String,String>)


11812
11813
11814
11815
11816
# File 'lib/aws-sdk-pinpoint/types.rb', line 11812

class TagsModel < Struct.new(
  :tags)
  SENSITIVE = []
  include Aws::Structure
end