interface OutputFormatOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.OutputFormatOptionsProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.OutputFormatOptionsProperty |
Python | aws_cdk.aws_databrew.CfnJob.OutputFormatOptionsProperty |
TypeScript | @aws-cdk/aws-databrew » CfnJob » OutputFormatOptionsProperty |
Represents a set of options that define the structure of comma-separated (CSV) job output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as databrew from '@aws-cdk/aws-databrew';
const outputFormatOptionsProperty: databrew.CfnJob.OutputFormatOptionsProperty = {
csv: {
delimiter: 'delimiter',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| csv? | IResolvable | Csv | Represents a set of options that define the structure of comma-separated value (CSV) job output. |
csv?
Type:
IResolvable | Csv
(optional)
Represents a set of options that define the structure of comma-separated value (CSV) job output.

.NET
Java
Python
TypeScript