interface QuickResponseContentsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnQuickResponsePropsMixin.QuickResponseContentsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnQuickResponsePropsMixin_QuickResponseContentsProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnQuickResponsePropsMixin.QuickResponseContentsProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnQuickResponsePropsMixin.QuickResponseContentsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnQuickResponsePropsMixin » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const quickResponseContentsProperty: wisdom_mixins.CfnQuickResponsePropsMixin.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