interface VideoStandardExtractionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.VideoStandardExtractionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_VideoStandardExtractionProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.VideoStandardExtractionProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.VideoStandardExtractionProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » VideoStandardExtractionProperty |
Settings for generating data from video.
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 videoStandardExtractionProperty: bedrock.CfnDataAutomationProject.VideoStandardExtractionProperty = {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
// the properties below are optional
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bounding | IResolvable | Video | Settings for generating bounding boxes. |
| category | IResolvable | Video | Settings for generating categorical data. |
boundingBox
Type:
IResolvable | Video
Settings for generating bounding boxes.
category
Type:
IResolvable | Video
Settings for generating categorical data.

.NET
Go
Java
Python
TypeScript