Show / Hide Table of Contents

Class CfnTablePropsMixin.SerdeInfoProperty

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

Inheritance
object
CfnTablePropsMixin.SerdeInfoProperty
Implements
CfnTablePropsMixin.ISerdeInfoProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.SerdeInfoProperty : CfnTablePropsMixin.ISerdeInfoProperty
Syntax (vb)
Public Class CfnTablePropsMixin.SerdeInfoProperty Implements CfnTablePropsMixin.ISerdeInfoProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.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.Mixins.Preview.AWS.Glue.Mixins;

             var parameters;

             var serdeInfoProperty = new SerdeInfoProperty {
                 Name = "name",
                 Parameters = parameters,
                 SerializationLibrary = "serializationLibrary"
             };

Synopsis

Constructors

SerdeInfoProperty()

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

Properties

Name

Name of the SerDe.

Parameters

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

SerializationLibrary

Usually the class that implements the SerDe.

Constructors

SerdeInfoProperty()

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

public SerdeInfoProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.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.Mixins.Preview.AWS.Glue.Mixins;

             var parameters;

             var serdeInfoProperty = new SerdeInfoProperty {
                 Name = "name",
                 Parameters = parameters,
                 SerializationLibrary = "serializationLibrary"
             };

Properties

Name

Name of the SerDe.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name

Parameters

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

public object? Parameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters

SerializationLibrary

Usually the class that implements the SerDe.

public string? SerializationLibrary { get; set; }
Property Value

string

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary

Implements

CfnTablePropsMixin.ISerdeInfoProperty
Back to top Generated by DocFX