interface SerdeInfoProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnTable.SerdeInfoProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_SerdeInfoProperty |
![]() | software.amazon.awscdk.services.glue.CfnTable.SerdeInfoProperty |
![]() | aws_cdk.aws_glue.CfnTable.SerdeInfoProperty |
![]() | 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
Name | Type | Description |
---|---|---|
name? | string | Name of the SerDe. |
parameters? | any | These key-value pairs define initialization parameters for the SerDe. |
serialization | string | Usually 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
.