interface SkewedInfoProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnPartition.SkewedInfoProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnPartition_SkewedInfoProperty |
![]() | software.amazon.awscdk.services.glue.CfnPartition.SkewedInfoProperty |
![]() | aws_cdk.aws_glue.CfnPartition.SkewedInfoProperty |
![]() | aws-cdk-lib » aws_glue » CfnPartition » SkewedInfoProperty |
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 { aws_glue as glue } from 'aws-cdk-lib';
declare const skewedColumnValueLocationMaps: any;
const skewedInfoProperty: glue.CfnPartition.SkewedInfoProperty = {
skewedColumnNames: ['skewedColumnNames'],
skewedColumnValueLocationMaps: skewedColumnValueLocationMaps,
skewedColumnValues: ['skewedColumnValues'],
};
Properties
Name | Type | Description |
---|---|---|
skewed | string[] | A list of names of columns that contain skewed values. |
skewed | any | A mapping of skewed values to the columns that contain them. |
skewed | string[] | A list of values that appear so frequently as to be considered skewed. |
skewedColumnNames?
Type:
string[]
(optional)
A list of names of columns that contain skewed values.
skewedColumnValueLocationMaps?
Type:
any
(optional)
A mapping of skewed values to the columns that contain them.
skewedColumnValues?
Type:
string[]
(optional)
A list of values that appear so frequently as to be considered skewed.