aws-cdk-lib.aws_wisdom.CfnKnowledgeBase.RenderingConfigurationProperty

interface RenderingConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.Wisdom.CfnKnowledgeBase.RenderingConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnKnowledgeBase_RenderingConfigurationProperty
Javasoftware.amazon.awscdk.services.wisdom.CfnKnowledgeBase.RenderingConfigurationProperty
Pythonaws_cdk.aws_wisdom.CfnKnowledgeBase.RenderingConfigurationProperty
TypeScript aws-cdk-lib » aws_wisdom » CfnKnowledgeBase » RenderingConfigurationProperty

Information about how to render the content.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from 'aws-cdk-lib';
const renderingConfigurationProperty: wisdom.CfnKnowledgeBase.RenderingConfigurationProperty = {
  templateUri: 'templateUri',
};

Properties

NameTypeDescription
templateUri?stringA URI template containing exactly one variable in ${variableName} format.

templateUri?

Type: string (optional)

A URI template containing exactly one variable in ${variableName} format.

This can only be set for EXTERNAL knowledge bases. For Salesforce, ServiceNow, and Zendesk, the variable must be one of the following:

  • Salesforce: Id , ArticleNumber , VersionNumber , Title , PublishStatus , or IsDeleted
  • ServiceNow: number , short_description , sys_mod_count , workflow_state , or active
  • Zendesk: id , title , updated_at , or draft

The variable is replaced with the actual value for a piece of content when calling GetContent .