Class: Aws::Pinpoint::Types::TemplateActiveVersionRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::TemplateActiveVersionRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Specifies which version of a message template to use as the active version of the template.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the message template to use as the active version of the template.
 
Instance Attribute Details
#version ⇒ String
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.
      11922 11923 11924 11925 11926  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 11922 class TemplateActiveVersionRequest < Struct.new( :version) SENSITIVE = [] include Aws::Structure end  |