Interface CfnQuickResponse.QuickResponseContentsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickResponse.QuickResponseContentsProperty.Jsii$Proxy
- Enclosing class:
CfnQuickResponse
@Stability(Stable)
public static interface CfnQuickResponse.QuickResponseContentsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.wisdom.*;
QuickResponseContentsProperty quickResponseContentsProperty = QuickResponseContentsProperty.builder()
.markdown(QuickResponseContentProviderProperty.builder()
.content("content")
.build())
.plainText(QuickResponseContentProviderProperty.builder()
.content("content")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuickResponse.QuickResponseContentsPropertystatic final classAn implementation forCfnQuickResponse.QuickResponseContentsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMarkdown
The quick response content in markdown format.Returns union: either
IResolvableorCfnQuickResponse.QuickResponseContentProviderProperty- See Also:
-
getPlainText
The quick response content in plaintext format.Returns union: either
IResolvableorCfnQuickResponse.QuickResponseContentProviderProperty- See Also:
-
builder
-