interface SerdeInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.SerdeInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_SerdeInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.SerdeInfoProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.SerdeInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
declare const parameters: any;
const serdeInfoProperty: glue_mixins.CfnTablePropsMixin.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 .

.NET
Go
Java
Python
TypeScript