Interface CfnQuickResponsePropsMixin.QuickResponseContentsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuickResponsePropsMixin.QuickResponseContentsProperty.Jsii$Proxy
- Enclosing class:
CfnQuickResponsePropsMixin
@Stability(Stable)
public static interface CfnQuickResponsePropsMixin.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.cfnpropertymixins.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 forCfnQuickResponsePropsMixin.QuickResponseContentsPropertystatic final classAn implementation forCfnQuickResponsePropsMixin.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
IResolvableorCfnQuickResponsePropsMixin.QuickResponseContentProviderProperty- See Also:
-
getPlainText
The quick response content in plaintext format.Returns union: either
IResolvableorCfnQuickResponsePropsMixin.QuickResponseContentProviderProperty- See Also:
-
builder
@Stability(Stable) static CfnQuickResponsePropsMixin.QuickResponseContentsProperty.Builder builder()
-