Interface CfnKnowledgeBase.MediaExtractionConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.MediaExtractionConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.MediaExtractionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.quicksight.*;
 MediaExtractionConfigurationProperty mediaExtractionConfigurationProperty = MediaExtractionConfigurationProperty.builder()
         .audioExtractionConfiguration(AudioExtractionConfigurationProperty.builder()
                 .audioExtractionStatus("audioExtractionStatus")
                 .build())
         .imageExtractionConfiguration(ImageExtractionConfigurationProperty.builder()
                 .imageExtractionStatus("imageExtractionStatus")
                 .build())
         .videoExtractionConfiguration(VideoExtractionConfigurationProperty.builder()
                 .videoExtractionStatus("videoExtractionStatus")
                 // the properties below are optional
                 .videoExtractionType("videoExtractionType")
                 .build())
         .build();
 

See Also: