Class CfnJobPropsMixin.OutputFormatOptionsProperty
Represents a set of options that define the structure of comma-separated (CSV) job output.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataBrew
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnJobPropsMixin.OutputFormatOptionsProperty : CfnJobPropsMixin.IOutputFormatOptionsProperty
Syntax (vb)
Public Class CfnJobPropsMixin.OutputFormatOptionsProperty Implements CfnJobPropsMixin.IOutputFormatOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DataBrew;
var outputFormatOptionsProperty = new OutputFormatOptionsProperty {
Csv = new CsvOutputOptionsProperty {
Delimiter = "delimiter"
}
};
Synopsis
Constructors
| OutputFormatOptionsProperty() | Represents a set of options that define the structure of comma-separated (CSV) job output. |
Properties
| Csv | Represents a set of options that define the structure of comma-separated value (CSV) job output. |
Constructors
OutputFormatOptionsProperty()
Represents a set of options that define the structure of comma-separated (CSV) job output.
public OutputFormatOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DataBrew;
var outputFormatOptionsProperty = new OutputFormatOptionsProperty {
Csv = new CsvOutputOptionsProperty {
Delimiter = "delimiter"
}
};
Properties
Csv
Represents a set of options that define the structure of comma-separated value (CSV) job output.
public object? Csv { get; set; }