Show / Hide Table of Contents

Interface CfnTable.IOpenTableFormatInputProperty

Specifies an OpenTableFormatInput structure when creating an open format table.

Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTable.IOpenTableFormatInputProperty
Syntax (vb)
Public Interface CfnTable.IOpenTableFormatInputProperty
Remarks

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

             var properties;

             var openTableFormatInputProperty = new OpenTableFormatInputProperty {
                 IcebergInput = new IcebergInputProperty {
                     IcebergTableInput = new IcebergTableInputProperty {
                         Location = "location",
                         Schema = new IcebergSchemaProperty {
                             Fields = new [] { new IcebergStructFieldProperty {
                                 Id = 123,
                                 Name = "name",
                                 Required = false,
                                 Type = "type",

                                 // the properties below are optional
                                 Doc = "doc"
                             } },

                             // the properties below are optional
                             IdentifierFieldIds = new [] { 123 },
                             SchemaId = 123,
                             Type = "type"
                         },

                         // the properties below are optional
                         PartitionSpec = new IcebergPartitionSpecProperty {
                             Fields = new [] { new IcebergPartitionFieldProperty {
                                 Name = "name",
                                 SourceId = 123,
                                 Transform = "transform",

                                 // the properties below are optional
                                 FieldId = 123
                             } },

                             // the properties below are optional
                             SpecId = 123
                         },
                         Properties = properties,
                         WriteOrder = new IcebergSortOrderProperty {
                             Fields = new [] { new IcebergSortFieldProperty {
                                 Direction = "direction",
                                 NullOrder = "nullOrder",
                                 SourceId = 123,
                                 Transform = "transform"
                             } },
                             OrderId = 123
                         }
                     },
                     MetadataOperation = "metadataOperation",
                     Version = "version"
                 }
             };

Synopsis

Properties

IcebergInput

Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.

Properties

IcebergInput

Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.

object? IcebergInput { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTable.IIcebergInputProperty

Back to top Generated by DocFX