Class: Aws::Connect::Types::TaskTemplateMetadata
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::TaskTemplateMetadata
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Contains summary information about the task template.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the task template.
 - 
  
    
      #created_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp when the task template was created.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the task template.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the task template.
 - 
  
    
      #last_modified_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp when the task template was last modified.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the task template.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Marks a template as ‘ACTIVE` or `INACTIVE` for a task to refer to it.
 
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the task template.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#created_time ⇒ Time
The timestamp when the task template was created.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description of the task template.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
A unique identifier for the task template.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#last_modified_time ⇒ Time
The timestamp when the task template was last modified.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the task template.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
Marks a template as ‘ACTIVE` or `INACTIVE` for a task to refer to it. Tasks can only be created from `ACTIVE` templates. If a template is marked as `INACTIVE`, then a task that refers to this template cannot be created.
      23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23531 class TaskTemplateMetadata < Struct.new( :id, :arn, :name, :description, :status, :last_modified_time, :created_time) SENSITIVE = [] include Aws::Structure end  |