amazonka-databrew-2.0: Amazon Glue DataBrew SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Description

 
Synopsis

Documentation

data ColumnStatisticsConfiguration Source #

Configuration for column evaluations for a profile job. ColumnStatisticsConfiguration can be used to select evaluations and override parameters of evaluations for particular columns.

See: newColumnStatisticsConfiguration smart constructor.

Constructors

ColumnStatisticsConfiguration' 

Fields

  • selectors :: Maybe (NonEmpty ColumnSelector)

    List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.

  • statistics :: StatisticsConfiguration

    Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.

Instances

Instances details
FromJSON ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

ToJSON ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Generic ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Associated Types

type Rep ColumnStatisticsConfiguration :: Type -> Type #

Read ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Show ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

NFData ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Eq ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

Hashable ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

type Rep ColumnStatisticsConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ColumnStatisticsConfiguration

type Rep ColumnStatisticsConfiguration = D1 ('MetaData "ColumnStatisticsConfiguration" "Amazonka.DataBrew.Types.ColumnStatisticsConfiguration" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "ColumnStatisticsConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "selectors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ColumnSelector))) :*: S1 ('MetaSel ('Just "statistics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 StatisticsConfiguration)))

newColumnStatisticsConfiguration Source #

Create a value of ColumnStatisticsConfiguration with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:selectors:ColumnStatisticsConfiguration', columnStatisticsConfiguration_selectors - List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.

$sel:statistics:ColumnStatisticsConfiguration', columnStatisticsConfiguration_statistics - Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.

columnStatisticsConfiguration_selectors :: Lens' ColumnStatisticsConfiguration (Maybe (NonEmpty ColumnSelector)) Source #

List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.

columnStatisticsConfiguration_statistics :: Lens' ColumnStatisticsConfiguration StatisticsConfiguration Source #

Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.