interface VideoOverrideConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.VideoOverrideConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_VideoOverrideConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.VideoOverrideConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.VideoOverrideConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » VideoOverrideConfigurationProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const videoOverrideConfigurationProperty: bedrock.CfnDataAutomationProject.VideoOverrideConfigurationProperty = {
modalityProcessing: {
state: 'state',
},
sensitiveDataConfiguration: {
detectionMode: 'detectionMode',
detectionScope: ['detectionScope'],
piiEntitiesConfiguration: {
piiEntityTypes: ['piiEntityTypes'],
redactionMaskMode: 'redactionMaskMode',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| modality | IResolvable | Modality | Sets modality processing for video files. |
| sensitive | IResolvable | Sensitive |
modalityProcessing?
Type:
IResolvable | Modality
(optional)
Sets modality processing for video files.
All modalities are enabled by default.
sensitiveDataConfiguration?
Type:
IResolvable | Sensitive
(optional)

.NET
Go
Java
Python
TypeScript