aws-cdk-lib.aws_glue.CfnPartition.SkewedInfoProperty

interface SkewedInfoProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnPartition.SkewedInfoProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnPartition_SkewedInfoProperty
Javasoftware.amazon.awscdk.services.glue.CfnPartition.SkewedInfoProperty
Pythonaws_cdk.aws_glue.CfnPartition.SkewedInfoProperty
TypeScript 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

NameTypeDescription
skewedColumnNames?string[]A list of names of columns that contain skewed values.
skewedColumnValueLocationMaps?anyA mapping of skewed values to the columns that contain them.
skewedColumnValues?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.