Interface CfnQuickResponseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickResponseProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:16.077Z")
@Stability(Stable)
public interface CfnQuickResponseProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnQuickResponse.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.wisdom.*;
CfnQuickResponseProps cfnQuickResponseProps = CfnQuickResponseProps.builder()
.content(QuickResponseContentProviderProperty.builder()
.content("content")
.build())
.knowledgeBaseArn("knowledgeBaseArn")
.name("name")
// the properties below are optional
.channels(List.of("channels"))
.contentType("contentType")
.description("description")
.groupingConfiguration(GroupingConfigurationProperty.builder()
.criteria("criteria")
.values(List.of("values"))
.build())
.isActive(false)
.language("language")
.shortcutKey("shortcutKey")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuickResponsePropsstatic final classAn implementation forCfnQuickResponseProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Connect contact channels this quick response applies to.The content of the quick response.default StringThe media type of the quick response content.default StringThe description of the quick response.default ObjectThe configuration information of the user groups that the quick response is accessible to.default ObjectWhether the quick response is active.The Amazon Resource Name (ARN) of the knowledge base.default StringThe language code value for the language in which the quick response is written.getName()The name of the quick response.default StringThe shortcut key of the quick response.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of the quick response.Returns union: either
IResolvableorCfnQuickResponse.QuickResponseContentProviderProperty- See Also:
-
getKnowledgeBaseArn
The Amazon Resource Name (ARN) of the knowledge base.- See Also:
-
getName
The name of the quick response.- See Also:
-
getChannels
The Amazon Connect contact channels this quick response applies to.The supported contact channel types include
Chat.- See Also:
-
getContentType
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.
- See Also:
- Use
-
getDescription
The description of the quick response.- See Also:
-
getGroupingConfiguration
The configuration information of the user groups that the quick response is accessible to.Returns union: either
IResolvableorCfnQuickResponse.GroupingConfigurationProperty- See Also:
-
getIsActive
Whether the quick response is active.Returns union: either
BooleanorIResolvable- See Also:
-
getLanguage
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- See Also:
-
getShortcutKey
The shortcut key of the quick response.The value should be unique across the knowledge base.
- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnQuickResponseProps.BuilderofCfnQuickResponseProps
-