Show / Hide Table of Contents

Interface CfnTablePropsMixin.IIcebergPartitionFieldProperty

A partition field specification for an Iceberg table.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Tables
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTablePropsMixin.IIcebergPartitionFieldProperty
Syntax (vb)
Public Interface CfnTablePropsMixin.IIcebergPartitionFieldProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergpartitionfield.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 icebergPartitionFieldProperty = new IcebergPartitionFieldProperty {
                 FieldId = 123,
                 Name = "name",
                 SourceId = 123,
                 Transform = "transform"
             };

Synopsis

Properties

FieldId

The partition field ID (auto-assigned starting from 1000 if not specified).

Name

The name of the partition field.

SourceId

The source column ID to partition on.

Transform

The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).

Properties

FieldId

The partition field ID (auto-assigned starting from 1000 if not specified).

double? FieldId { get; }
Property Value

double?

Remarks

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

Name

The name of the partition field.

string? Name { get; }
Property Value

string

Remarks

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

SourceId

The source column ID to partition on.

double? SourceId { get; }
Property Value

double?

Remarks

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

Transform

The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).

string? Transform { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX