libZSservicesZSamazonka-databrewZSamazonka-databrew
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DataBrew.Types.ProfileConfiguration

Description

 
Synopsis

Documentation

data ProfileConfiguration Source #

Configuration for profile jobs. Configuration can be used to select columns, do evaluations, and override default parameters of evaluations. When configuration is undefined, the profile job will apply default settings to all supported columns.

See: newProfileConfiguration smart constructor.

Constructors

ProfileConfiguration' 

Fields

  • datasetStatisticsConfiguration :: Maybe StatisticsConfiguration

    Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

  • columnStatisticsConfigurations :: Maybe (NonEmpty ColumnStatisticsConfiguration)

    List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

  • profileColumns :: Maybe (NonEmpty ColumnSelector)

    List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

Instances

Instances details
Eq ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

Read ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

Show ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

Generic ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

Associated Types

type Rep ProfileConfiguration :: Type -> Type #

NFData ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

Methods

rnf :: ProfileConfiguration -> () #

Hashable ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

ToJSON ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

FromJSON ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

type Rep ProfileConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ProfileConfiguration

type Rep ProfileConfiguration = D1 ('MetaData "ProfileConfiguration" "Amazonka.DataBrew.Types.ProfileConfiguration" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ProfileConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "datasetStatisticsConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StatisticsConfiguration)) :*: (S1 ('MetaSel ('Just "columnStatisticsConfigurations") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ColumnStatisticsConfiguration))) :*: S1 ('MetaSel ('Just "profileColumns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ColumnSelector))))))

newProfileConfiguration :: ProfileConfiguration Source #

Create a value of ProfileConfiguration 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:datasetStatisticsConfiguration:ProfileConfiguration', profileConfiguration_datasetStatisticsConfiguration - Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

$sel:columnStatisticsConfigurations:ProfileConfiguration', profileConfiguration_columnStatisticsConfigurations - List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

$sel:profileColumns:ProfileConfiguration', profileConfiguration_profileColumns - List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

profileConfiguration_datasetStatisticsConfiguration :: Lens' ProfileConfiguration (Maybe StatisticsConfiguration) Source #

Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

profileConfiguration_columnStatisticsConfigurations :: Lens' ProfileConfiguration (Maybe (NonEmpty ColumnStatisticsConfiguration)) Source #

List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

profileConfiguration_profileColumns :: Lens' ProfileConfiguration (Maybe (NonEmpty ColumnSelector)) Source #

List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.