Class CfnDatasetPropsMixin.PartitionSpecProperty
The partition specification of the dataset.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SCN
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDatasetPropsMixin.PartitionSpecProperty : CfnDatasetPropsMixin.IPartitionSpecProperty
Syntax (vb)
Public Class CfnDatasetPropsMixin.PartitionSpecProperty Implements CfnDatasetPropsMixin.IPartitionSpecProperty
Remarks
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.SCN;
var partitionSpecProperty = new PartitionSpecProperty {
Fields = new [] { new DataLakeDatasetPartitionFieldProperty {
Name = "name",
Transform = new TransformProperty {
Type = "type"
}
} }
};
Synopsis
Constructors
| PartitionSpecProperty() | The partition specification of the dataset. |
Properties
| Fields | The partition fields. |
Constructors
PartitionSpecProperty()
The partition specification of the dataset.
public PartitionSpecProperty()
Remarks
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.SCN;
var partitionSpecProperty = new PartitionSpecProperty {
Fields = new [] { new DataLakeDatasetPartitionFieldProperty {
Name = "name",
Transform = new TransformProperty {
Type = "type"
}
} }
};
Properties
Fields
The partition fields.
public object? Fields { get; set; }