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: