Interface CfnDataAutomationProjectPropsMixin.VideoOverrideConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProjectPropsMixin.VideoOverrideConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProjectPropsMixin
@Stability(Stable)
public static interface CfnDataAutomationProjectPropsMixin.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.cfnpropertymixins.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProjectPropsMixin.VideoOverrideConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModalityProcessing
Sets modality processing for video files.All modalities are enabled by default.
Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.ModalityProcessingConfigurationProperty- See Also:
-
getSensitiveDataConfiguration
Configuration for sensitive data detection and redaction for video files.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.SensitiveDataConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProjectPropsMixin.VideoOverrideConfigurationProperty.Builder builder()
-