Show / Hide Table of Contents

Class CfnTablePropsMixin.IcebergSchemaProperty

Contains details about the schema for an Iceberg table.

Inheritance
object
CfnTablePropsMixin.IcebergSchemaProperty
Implements
CfnTablePropsMixin.IIcebergSchemaProperty
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.S3Tables.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.IcebergSchemaProperty : CfnTablePropsMixin.IIcebergSchemaProperty
Syntax (vb)
Public Class CfnTablePropsMixin.IcebergSchemaProperty Implements CfnTablePropsMixin.IIcebergSchemaProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.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.S3Tables.Mixins;

             var icebergSchemaProperty = new IcebergSchemaProperty {
                 SchemaFieldList = new [] { new SchemaFieldProperty {
                     Name = "name",
                     Required = false,
                     Type = "type"
                 } }
             };

Synopsis

Constructors

IcebergSchemaProperty()

Contains details about the schema for an Iceberg table.

Properties

SchemaFieldList

The schema fields for the table.

Constructors

IcebergSchemaProperty()

Contains details about the schema for an Iceberg table.

public IcebergSchemaProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.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.S3Tables.Mixins;

             var icebergSchemaProperty = new IcebergSchemaProperty {
                 SchemaFieldList = new [] { new SchemaFieldProperty {
                     Name = "name",
                     Required = false,
                     Type = "type"
                 } }
             };

Properties

SchemaFieldList

The schema fields for the table.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.html#cfn-s3tables-table-icebergschema-schemafieldlist

Type union: either IResolvable or (either IResolvable or CfnTablePropsMixin.ISchemaFieldProperty)[]

Implements

CfnTablePropsMixin.IIcebergSchemaProperty
Back to top Generated by DocFX