Class PartitionIndex
(deprecated) Properties of a Partition Index.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public class PartitionIndex : IPartitionIndex
Syntax (vb)
Public Class PartitionIndex Implements IPartitionIndex
Remarks
Stability: Deprecated
ExampleMetadata: infused
Examples
S3Table myTable;
myTable.AddPartitionIndex(new PartitionIndex {
IndexName = "my-index",
KeyNames = new [] { "year" }
});
Synopsis
Constructors
| PartitionIndex() | (deprecated) Properties of a Partition Index. |
Properties
| IndexName | (deprecated) The name of the partition index. |
| KeyNames | (deprecated) The partition key names that comprise the partition index. |
Constructors
PartitionIndex()
(deprecated) Properties of a Partition Index.
public PartitionIndex()
Remarks
Stability: Deprecated
ExampleMetadata: infused
Examples
S3Table myTable;
myTable.AddPartitionIndex(new PartitionIndex {
IndexName = "my-index",
KeyNames = new [] { "year" }
});
Properties
IndexName
(deprecated) The name of the partition index.
[Obsolete]
public string? IndexName { get; set; }
Property Value
Remarks
Default: - a name will be generated for you.
Stability: Deprecated
KeyNames
(deprecated) The partition key names that comprise the partition index.
[Obsolete]
public string[] KeyNames { get; set; }
Property Value
string[]
Remarks
The names must correspond to a name in the table's partition keys.
Stability: Deprecated