aws-cdk-lib.aws_glue.CfnTable.SerdeInfoProperty

interface SerdeInfoProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.SerdeInfoProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_SerdeInfoProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.SerdeInfoProperty
Pythonaws_cdk.aws_glue.CfnTable.SerdeInfoProperty
TypeScript aws-cdk-lib » aws_glue » CfnTable » SerdeInfoProperty

Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';

declare const parameters: any;
const serdeInfoProperty: glue.CfnTable.SerdeInfoProperty = {
  name: 'name',
  parameters: parameters,
  serializationLibrary: 'serializationLibrary',
};

Properties

NameTypeDescription
name?stringName of the SerDe.
parameters?anyThese key-value pairs define initialization parameters for the SerDe.
serializationLibrary?stringUsually the class that implements the SerDe.

name?

Type: string (optional)

Name of the SerDe.


parameters?

Type: any (optional)

These key-value pairs define initialization parameters for the SerDe.


serializationLibrary?

Type: string (optional)

Usually the class that implements the SerDe.

An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe .