interface StandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.StandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_StandardOutputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.StandardOutputConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.StandardOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » StandardOutputConfigurationProperty |
The project's standard output configuration.
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 standardOutputConfigurationProperty: bedrock.CfnDataAutomationProject.StandardOutputConfigurationProperty = {
audio: {
extraction: {
category: {
state: 'state',
// the properties below are optional
typeConfiguration: {
transcript: {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
},
},
types: ['types'],
},
},
generativeField: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
document: {
extraction: {
boundingBox: {
state: 'state',
},
granularity: {
types: ['types'],
},
},
generativeField: {
state: 'state',
},
outputFormat: {
additionalFileFormat: {
state: 'state',
},
textFormat: {
types: ['types'],
},
},
},
image: {
extraction: {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
generativeField: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
video: {
extraction: {
boundingBox: {
state: 'state',
},
category: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
generativeField: {
state: 'state',
// the properties below are optional
types: ['types'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audio? | IResolvable | Audio | Settings for processing audio. |
| document? | IResolvable | Document | Settings for processing documents. |
| image? | IResolvable | Image | Settings for processing images. |
| video? | IResolvable | Video | Settings for processing video. |
audio?
Type:
IResolvable | Audio
(optional)
Settings for processing audio.
document?
Type:
IResolvable | Document
(optional)
Settings for processing documents.
image?
Type:
IResolvable | Image
(optional)
Settings for processing images.
video?
Type:
IResolvable | Video
(optional)
Settings for processing video.

.NET
Go
Java
Python
TypeScript