Interface CfnQuickResponseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickResponseProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-02T11:25:42.224Z")
@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 class
A builder forCfnQuickResponseProps
static final class
An implementation forCfnQuickResponseProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Connect contact channels this quick response applies to.The content of the quick response.default String
The media type of the quick response content.default String
The description of the quick response.default Object
The configuration information of the user groups that the quick response is accessible to.default Object
Whether the quick response is active.The Amazon Resource Name (ARN) of the knowledge base.default String
The language code value for the language in which the quick response is written.getName()
The name of the quick response.default String
The 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.- 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=plain
for quick response written in plain text. - Use
application/x.quickresponse;format=markdown
for 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.- See Also:
-
getIsActive
Whether the quick response is active.- 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.Builder
ofCfnQuickResponseProps
-