interface VideoStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_VideoStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataAutomationProjectPropsMixin » VideoStandardOutputConfigurationProperty |
Output settings for processing video.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const videoStandardOutputConfigurationProperty: bedrock_mixins.CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty = {
extraction: {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
types: ['types'],
},
},
generativeField: {
state: 'state',
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| extraction? | IResolvable | Video | Settings for populating data fields that describe the video. |
| generative | IResolvable | Video | Whether to generate descriptions of the video. |
extraction?
Type:
IResolvable | Video
(optional)
Settings for populating data fields that describe the video.
generativeField?
Type:
IResolvable | Video
(optional)
Whether to generate descriptions of the video.

.NET
Go
Java
Python
TypeScript