Class: Aws::Connect::Types::TemplateAttributes

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

Overview

Information about the template attributes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_attributesHash<String,String>

An object that specifies the custom attributes values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template.

Returns:

  • (Hash<String,String>)


23178
23179
23180
23181
23182
23183
# File 'lib/aws-sdk-connect/types.rb', line 23178

class TemplateAttributes < Struct.new(
  :custom_attributes,
  :customer_profile_attributes)
  SENSITIVE = []
  include Aws::Structure
end

#customer_profile_attributesString

An object that specifies the customer profile attributes values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template.

Returns:

  • (String)


23178
23179
23180
23181
23182
23183
# File 'lib/aws-sdk-connect/types.rb', line 23178

class TemplateAttributes < Struct.new(
  :custom_attributes,
  :customer_profile_attributes)
  SENSITIVE = []
  include Aws::Structure
end