interface SkewedInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.SkewedInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_SkewedInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.SkewedInfoProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.SkewedInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
declare const skewedColumnValueLocationMaps: any;
const skewedInfoProperty: glue_mixins.CfnTablePropsMixin.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.

.NET
Go
Java
Python
TypeScript