Interface CfnPartition.SkewedInfoProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartition.SkewedInfoProperty.Jsii$Proxy
- Enclosing class:
- CfnPartition
@Stability(Stable)
public static interface CfnPartition.SkewedInfoProperty
extends software.amazon.jsii.JsiiSerializable
Specifies skewed values in a table.
Skewed values are those that occur with very high frequency.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.glue.*; Object skewedColumnValueLocationMaps; SkewedInfoProperty skewedInfoProperty = SkewedInfoProperty.builder() .skewedColumnNames(List.of("skewedColumnNames")) .skewedColumnValueLocationMaps(skewedColumnValueLocationMaps) .skewedColumnValues(List.of("skewedColumnValues")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartition.SkewedInfoProperty
static final class
An implementation forCfnPartition.SkewedInfoProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSkewedColumnNames
A list of names of columns that contain skewed values. -
getSkewedColumnValueLocationMaps
A mapping of skewed values to the columns that contain them. -
getSkewedColumnValues
A list of values that appear so frequently as to be considered skewed. -
builder
-