interface DataFormatProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Alpha.DataFormatProps |
![]() | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#DataFormatProps |
![]() | software.amazon.awscdk.services.glue.alpha.DataFormatProps |
![]() | aws_cdk.aws_glue_alpha.DataFormatProps |
![]() | @aws-cdk/aws-glue-alpha ยป DataFormatProps |
Properties of a DataFormat instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
declare const classificationString: glue_alpha.ClassificationString;
declare const inputFormat: glue_alpha.InputFormat;
declare const outputFormat: glue_alpha.OutputFormat;
declare const serializationLibrary: glue_alpha.SerializationLibrary;
const dataFormatProps: glue_alpha.DataFormatProps = {
inputFormat: inputFormat,
outputFormat: outputFormat,
serializationLibrary: serializationLibrary,
// the properties below are optional
classificationString: classificationString,
};
Properties
Name | Type | Description |
---|---|---|
input | Input | InputFormat for this data format. |
output | Output | OutputFormat for this data format. |
serialization | Serialization | Serialization library for this data format. |
classification | Classification | Classification string given to tables with this data format. |
inputFormat
Type:
Input
InputFormat
for this data format.
outputFormat
Type:
Output
OutputFormat
for this data format.
serializationLibrary
Type:
Serialization
Serialization library for this data format.
classificationString?
Type:
Classification
(optional, default: No classification is specified.)
Classification string given to tables with this data format.