class Aws::GlueDataBrew::Types::ProfileConfiguration

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.

@note When making an API call, you may pass ProfileConfiguration

data as a hash:

    {
      dataset_statistics_configuration: {
        included_statistics: ["Statistic"],
        overrides: [
          {
            statistic: "Statistic", # required
            parameters: { # required
              "ParameterName" => "ParameterValue",
            },
          },
        ],
      },
      profile_columns: [
        {
          regex: "ColumnName",
          name: "ColumnName",
        },
      ],
      column_statistics_configurations: [
        {
          selectors: [
            {
              regex: "ColumnName",
              name: "ColumnName",
            },
          ],
          statistics: { # required
            included_statistics: ["Statistic"],
            overrides: [
              {
                statistic: "Statistic", # required
                parameters: { # required
                  "ParameterName" => "ParameterValue",
                },
              },
            ],
          },
        },
      ],
    }

@!attribute [rw] dataset_statistics_configuration

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.
@return [Types::StatisticsConfiguration]

@!attribute [rw] profile_columns

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.
@return [Array<Types::ColumnSelector>]

@!attribute [rw] column_statistics_configurations

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.
@return [Array<Types::ColumnStatisticsConfiguration>]

@see docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/ProfileConfiguration AWS API Documentation

Constants

SENSITIVE