Class: Aws::Pinpoint::Types::TemplateActiveVersionRequest

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

Overview

Note:

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

{
  version: "__string",
}

Specifies which version of a message template to use as the active version of the template.

Instance Attribute Summary collapse

Instance Attribute Details

#versionString

The version of the message template to use as the active version of the template. Valid values are: latest, for the most recent version of the template; or, the unique identifier for any existing version of the template. If you specify an identifier, the value must match the identifier for an existing template version. To retrieve a list of versions and version identifiers for a template, use the <link linkend=“templates-template-name-template-type-versions” />

Template Versions</link> resource.

Returns:

  • (String)


14726
14727
14728
14729
# File 'lib/aws-sdk-pinpoint/types.rb', line 14726

class TemplateActiveVersionRequest < Struct.new(
  :version)
  include Aws::Structure
end