Show / Hide Table of Contents

Interface IPartitionIndex

(experimental) Properties of a Partition Index.

Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface IPartitionIndex
Syntax (vb)
Public Interface IPartitionIndex
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
Table myTable;

             myTable.AddPartitionIndex(new PartitionIndex {
                 IndexName = "my-index",
                 KeyNames = new [] { "year" }
             });

Synopsis

Properties

IndexName

(experimental) The name of the partition index.

KeyNames

(experimental) The partition key names that comprise the partition index.

Properties

IndexName

(experimental) The name of the partition index.

string? IndexName { get; }
Property Value

string

Remarks

Default: - a name will be generated for you.

Stability: Experimental

KeyNames

(experimental) The partition key names that comprise the partition index.

string[] KeyNames { get; }
Property Value

string[]

Remarks

The names must correspond to a name in the table's partition keys.

Stability: Experimental

Back to top Generated by DocFX