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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/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>)


23134
23135
23136
23137
23138
23139
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23134

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)


23134
23135
23136
23137
23138
23139
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23134

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