interface DocumentOutputFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.DocumentOutputFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_DocumentOutputFormatProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.DocumentOutputFormatProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.DocumentOutputFormatProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » DocumentOutputFormatProperty |
A document output format.
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 documentOutputFormatProperty: bedrock.CfnDataAutomationProject.DocumentOutputFormatProperty = {
additionalFileFormat: {
state: 'state',
},
textFormat: {
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | Document | Output settings for additional file formats. |
| text | IResolvable | Document | An output text format. |
additionalFileFormat
Type:
IResolvable | Document
Output settings for additional file formats.
textFormat
Type:
IResolvable | Document
An output text format.

.NET
Go
Java
Python
TypeScript