Show / Hide Table of Contents

Interface CfnTable.IIcebergSortOrderProperty

Sort order specification for an Iceberg table.

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

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

             var icebergSortOrderProperty = new IcebergSortOrderProperty {
                 Fields = new [] { new IcebergSortFieldProperty {
                     Direction = "direction",
                     NullOrder = "nullOrder",
                     SourceId = 123,
                     Transform = "transform"
                 } },

                 // the properties below are optional
                 OrderId = 123
             };

Synopsis

Properties

Fields

List of sort fields for an Iceberg table.

OrderId

The sort order ID (defaults to 1 if not specified, 0 is reserved for unsorted).

Properties

Fields

List of sort fields for an Iceberg table.

object Fields { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnTable.IIcebergSortFieldProperty)[]

OrderId

The sort order ID (defaults to 1 if not specified, 0 is reserved for unsorted).

double? OrderId { get; }
Property Value

double?

Remarks

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

Back to top Generated by DocFX