Show / Hide Table of Contents

Class CfnTablePropsMixin.IcebergPartitionSpecProperty

Partition specification for an Iceberg table.

Inheritance
object
CfnTablePropsMixin.IcebergPartitionSpecProperty
Implements
CfnTablePropsMixin.IIcebergPartitionSpecProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Tables
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.IcebergPartitionSpecProperty : CfnTablePropsMixin.IIcebergPartitionSpecProperty
Syntax (vb)
Public Class CfnTablePropsMixin.IcebergPartitionSpecProperty Implements CfnTablePropsMixin.IIcebergPartitionSpecProperty
Remarks

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

             var icebergPartitionSpecProperty = new IcebergPartitionSpecProperty {
                 Fields = new [] { new IcebergPartitionFieldProperty {
                     FieldId = 123,
                     Name = "name",
                     SourceId = 123,
                     Transform = "transform"
                 } },
                 SpecId = 123
             };

Synopsis

Constructors

IcebergPartitionSpecProperty()

Partition specification for an Iceberg table.

Properties

Fields

List of partition fields for an Iceberg table.

SpecId

The partition spec ID (defaults to 0 if not specified).

Constructors

IcebergPartitionSpecProperty()

Partition specification for an Iceberg table.

public IcebergPartitionSpecProperty()
Remarks

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

             var icebergPartitionSpecProperty = new IcebergPartitionSpecProperty {
                 Fields = new [] { new IcebergPartitionFieldProperty {
                     FieldId = 123,
                     Name = "name",
                     SourceId = 123,
                     Transform = "transform"
                 } },
                 SpecId = 123
             };

Properties

Fields

List of partition fields for an Iceberg table.

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

object

Remarks

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

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

SpecId

The partition spec ID (defaults to 0 if not specified).

public double? SpecId { get; set; }
Property Value

double?

Remarks

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

Implements

CfnTablePropsMixin.IIcebergPartitionSpecProperty
Back to top Generated by DocFX