interface OutputFormatOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.OutputFormatOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_OutputFormatOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.OutputFormatOptionsProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.OutputFormatOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const outputFormatOptionsProperty: databrew_mixins.CfnJobPropsMixin.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
Go
Java
Python
TypeScript