Show / Hide Table of Contents

Class CfnJobPropsMixin.OutputFormatOptionsProperty

Represents a set of options that define the structure of comma-separated (CSV) job output.

Inheritance
object
CfnJobPropsMixin.OutputFormatOptionsProperty
Implements
CfnJobPropsMixin.IOutputFormatOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputformatoptions.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputformatoptions.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-outputformatoptions.html#cfn-databrew-job-outputformatoptions-csv

Type union: either IResolvable or CfnJobPropsMixin.ICsvOutputOptionsProperty

Implements

CfnJobPropsMixin.IOutputFormatOptionsProperty
Back to top Generated by DocFX