CfnQuickResponseProps
- class aws_cdk.aws_wisdom.CfnQuickResponseProps(*, content, knowledge_base_arn, name, channels=None, content_type=None, description=None, grouping_configuration=None, is_active=None, language=None, shortcut_key=None, tags=None)
Bases:
object
Properties for defining a
CfnQuickResponse
.- Parameters:
content (
Union
[IResolvable
,QuickResponseContentProviderProperty
,Dict
[str
,Any
]]) – The content of the quick response.knowledge_base_arn (
str
) – The Amazon Resource Name (ARN) of the knowledge base.name (
str
) – The name of the quick response.channels (
Optional
[Sequence
[str
]]) – The Amazon Connect contact channels this quick response applies to. The supported contact channel types includeChat
.content_type (
Optional
[str
]) – The media type of the quick response content. - Useapplication/x.quickresponse;format=plain
for quick response written in plain text. - Useapplication/x.quickresponse;format=markdown
for quick response written in richtext.description (
Optional
[str
]) – The description of the quick response.grouping_configuration (
Union
[IResolvable
,GroupingConfigurationProperty
,Dict
[str
,Any
],None
]) – The configuration information of the user groups that the quick response is accessible to.is_active (
Union
[bool
,IResolvable
,None
]) – Whether the quick response is active.language (
Optional
[str
]) – The language code value for the language in which the quick response is written. The supported language codes includede_DE
,en_US
,es_ES
,fr_FR
,id_ID
,it_IT
,ja_JP
,ko_KR
,pt_BR
,zh_CN
,zh_TW
shortcut_key (
Optional
[str
]) – The shortcut key of the quick response. The value should be unique across the knowledge base.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags used to organize, track, or control access for this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_wisdom as wisdom cfn_quick_response_props = wisdom.CfnQuickResponseProps( content=wisdom.CfnQuickResponse.QuickResponseContentProviderProperty( content="content" ), knowledge_base_arn="knowledgeBaseArn", name="name", # the properties below are optional channels=["channels"], content_type="contentType", description="description", grouping_configuration=wisdom.CfnQuickResponse.GroupingConfigurationProperty( criteria="criteria", values=["values"] ), is_active=False, language="language", shortcut_key="shortcutKey", tags=[CfnTag( key="key", value="value" )] )
Attributes
- channels
The Amazon Connect contact channels this quick response applies to.
The supported contact channel types include
Chat
.
- content
The content of the quick response.
- content_type
The media type of the quick response content.
Use
application/x.quickresponse;format=plain
for quick response written in plain text.Use
application/x.quickresponse;format=markdown
for quick response written in richtext.
- description
The description of the quick response.
- grouping_configuration
The configuration information of the user groups that the quick response is accessible to.
- is_active
Whether the quick response is active.
- knowledge_base_arn
The Amazon Resource Name (ARN) of the knowledge base.
- language
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
The name of the quick response.
- shortcut_key
The shortcut key of the quick response.
The value should be unique across the knowledge base.
- tags
The tags used to organize, track, or control access for this resource.