Interface CfnDataAutomationProject.VideoOverrideConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAutomationProject.VideoOverrideConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Sets whether your project will process videos or not.

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.bedrock.*;
 VideoOverrideConfigurationProperty videoOverrideConfigurationProperty = VideoOverrideConfigurationProperty.builder()
         .modalityProcessing(ModalityProcessingConfigurationProperty.builder()
                 .state("state")
                 .build())
         .sensitiveDataConfiguration(SensitiveDataConfigurationProperty.builder()
                 .detectionMode("detectionMode")
                 .detectionScope(List.of("detectionScope"))
                 .piiEntitiesConfiguration(PIIEntitiesConfigurationProperty.builder()
                         .piiEntityTypes(List.of("piiEntityTypes"))
                         .redactionMaskMode("redactionMaskMode")
                         .build())
                 .build())
         .build();
 

See Also: