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: