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>)


23575
23576
23577
23578
23579
23580
# File 'lib/aws-sdk-connect/types.rb', line 23575

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)


23575
23576
23577
23578
23579
23580
# File 'lib/aws-sdk-connect/types.rb', line 23575

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