Class: Aws::ConnectWisdomService::Types::RenderingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::RenderingConfiguration
- Defined in:
- gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb
Overview
Note:
When making an API call, you may pass RenderingConfiguration data as a hash:
{
template_uri: "Uri",
}
Information about how to render the content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#template_uri ⇒ String
A URI template containing exactly one variable in
$\{variableName\}
format.
Instance Attribute Details
#template_uri ⇒ String
A URI template containing exactly one variable in $\{variableName\}
format. This can only be set for EXTERNAL
knowledge bases. For
Salesforce and ServiceNow, the variable must be one of the
following:
Salesforce:
Id
,ArticleNumber
,VersionNumber
,Title
,PublishStatus
, orIsDeleted
ServiceNow:
number
,short_description
,sys_mod_count
,workflow_state
, oractive
^The variable is replaced with the actual value for a piece of content when calling GetContent.
2056 2057 2058 2059 2060 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2056 class RenderingConfiguration < Struct.new( :template_uri) SENSITIVE = [] include Aws::Structure end |