interface CfnQuickResponseMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnQuickResponseMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnQuickResponseMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnQuickResponseMixinProps |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnQuickResponseMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnQuickResponseMixinProps |
Properties for CfnQuickResponsePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html
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 cfnQuickResponseMixinProps: wisdom_mixins.CfnQuickResponseMixinProps = {
channels: ['channels'],
content: {
content: 'content',
},
contentType: 'contentType',
description: 'description',
groupingConfiguration: {
criteria: 'criteria',
values: ['values'],
},
isActive: false,
knowledgeBaseArn: 'knowledgeBaseArn',
language: 'language',
name: 'name',
shortcutKey: 'shortcutKey',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| channels? | string[] | The Amazon Connect contact channels this quick response applies to. |
| content? | IResolvable | Quick | The content of the quick response. |
| content | string | The media type of the quick response content. |
| description? | string | The description of the quick response. |
| grouping | IResolvable | Grouping | The configuration information of the user groups that the quick response is accessible to. |
| is | boolean | IResolvable | Whether the quick response is active. |
| knowledge | string | The Amazon Resource Name (ARN) of the knowledge base. |
| language? | string | The language code value for the language in which the quick response is written. |
| name? | string | The name of the quick response. |
| shortcut | string | The shortcut key of the quick response. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
channels?
Type:
string[]
(optional)
The Amazon Connect contact channels this quick response applies to.
The supported contact channel types include Chat .
content?
Type:
IResolvable | Quick
(optional)
The content of the quick response.
contentType?
Type:
string
(optional)
The media type of the quick response content.
- Use
application/x.quickresponse;format=plainfor quick response written in plain text. - Use
application/x.quickresponse;format=markdownfor quick response written in richtext.
description?
Type:
string
(optional)
The description of the quick response.
groupingConfiguration?
Type:
IResolvable | Grouping
(optional)
The configuration information of the user groups that the quick response is accessible to.
isActive?
Type:
boolean | IResolvable
(optional)
Whether the quick response is active.
knowledgeBaseArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the knowledge base.
language?
Type:
string
(optional)
The language code value for the language in which the quick response is written.
The supported language codes include de_DE , en_US , es_ES , fr_FR , id_ID , it_IT , ja_JP , ko_KR , pt_BR , zh_CN , zh_TW
name?
Type:
string
(optional)
The name of the quick response.
shortcutKey?
Type:
string
(optional)
The shortcut key of the quick response.
The value should be unique across the knowledge base.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.

.NET
Go
Java
Python
TypeScript