Class: Aws::GlueDataBrew::Types::ProfileConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ProfileConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_statistics_configurations ⇒ Array<Types::ColumnStatisticsConfiguration>
List of configurations for column evaluations.
-
#dataset_statistics_configuration ⇒ Types::StatisticsConfiguration
Configuration for inter-column evaluations.
-
#entity_detector_configuration ⇒ Types::EntityDetectorConfiguration
Configuration of entity detection for a profile job.
-
#profile_columns ⇒ Array<Types::ColumnSelector>
List of column selectors.
Instance Attribute Details
#column_statistics_configurations ⇒ Array<Types::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.
2902 2903 2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2902 class ProfileConfiguration < Struct.new( :dataset_statistics_configuration, :profile_columns, :column_statistics_configurations, :entity_detector_configuration) SENSITIVE = [] include Aws::Structure end |
#dataset_statistics_configuration ⇒ Types::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.
2902 2903 2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2902 class ProfileConfiguration < Struct.new( :dataset_statistics_configuration, :profile_columns, :column_statistics_configurations, :entity_detector_configuration) SENSITIVE = [] include Aws::Structure end |
#entity_detector_configuration ⇒ Types::EntityDetectorConfiguration
Configuration of entity detection for a profile job. When undefined, entity detection is disabled.
2902 2903 2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2902 class ProfileConfiguration < Struct.new( :dataset_statistics_configuration, :profile_columns, :column_statistics_configurations, :entity_detector_configuration) SENSITIVE = [] include Aws::Structure end |
#profile_columns ⇒ Array<Types::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.
2902 2903 2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2902 class ProfileConfiguration < Struct.new( :dataset_statistics_configuration, :profile_columns, :column_statistics_configurations, :entity_detector_configuration) SENSITIVE = [] include Aws::Structure end |