interface QuickResponseContentsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnQuickResponse.QuickResponseContentsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnQuickResponse_QuickResponseContentsProperty |
Java | software.amazon.awscdk.services.wisdom.CfnQuickResponse.QuickResponseContentsProperty |
Python | aws_cdk.aws_wisdom.CfnQuickResponse.QuickResponseContentsProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnQuickResponse » QuickResponseContentsProperty |
The content of the quick response stored in different media types.
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 quickResponseContentsProperty: wisdom.CfnQuickResponse.QuickResponseContentsProperty = {
markdown: {
content: 'content',
},
plainText: {
content: 'content',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| markdown? | IResolvable | Quick | The quick response content in markdown format. |
| plain | IResolvable | Quick | The quick response content in plaintext format. |
markdown?
Type:
IResolvable | Quick
(optional)
The quick response content in markdown format.
plainText?
Type:
IResolvable | Quick
(optional)
The quick response content in plaintext format.

.NET
Go
Java
Python
TypeScript