{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.DataBrew.Types.JobSample -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.DataBrew.Types.JobSample where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DataBrew.Types.SampleMode import qualified Amazonka.Prelude as Prelude -- | A sample configuration for profile jobs only, which determines the -- number of rows on which the profile job is run. If a @JobSample@ value -- isn\'t provided, the default is used. The default value is CUSTOM_ROWS -- for the mode parameter and 20,000 for the size parameter. -- -- /See:/ 'newJobSample' smart constructor. data JobSample = JobSample' { -- | A value that determines whether the profile job is run on the entire -- dataset or a specified number of rows. This value must be one of the -- following: -- -- - FULL_DATASET - The profile job is run on the entire dataset. -- -- - CUSTOM_ROWS - The profile job is run on the number of rows specified -- in the @Size@ parameter. mode :: Prelude.Maybe SampleMode, -- | The @Size@ parameter is only required when the mode is CUSTOM_ROWS. The -- profile job is run on the specified number of rows. The maximum value -- for size is Long.MAX_VALUE. -- -- Long.MAX_VALUE = 9223372036854775807 size :: Prelude.Maybe Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'JobSample' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'mode', 'jobSample_mode' - A value that determines whether the profile job is run on the entire -- dataset or a specified number of rows. This value must be one of the -- following: -- -- - FULL_DATASET - The profile job is run on the entire dataset. -- -- - CUSTOM_ROWS - The profile job is run on the number of rows specified -- in the @Size@ parameter. -- -- 'size', 'jobSample_size' - The @Size@ parameter is only required when the mode is CUSTOM_ROWS. The -- profile job is run on the specified number of rows. The maximum value -- for size is Long.MAX_VALUE. -- -- Long.MAX_VALUE = 9223372036854775807 newJobSample :: JobSample newJobSample = JobSample' { mode = Prelude.Nothing, size = Prelude.Nothing } -- | A value that determines whether the profile job is run on the entire -- dataset or a specified number of rows. This value must be one of the -- following: -- -- - FULL_DATASET - The profile job is run on the entire dataset. -- -- - CUSTOM_ROWS - The profile job is run on the number of rows specified -- in the @Size@ parameter. jobSample_mode :: Lens.Lens' JobSample (Prelude.Maybe SampleMode) jobSample_mode = Lens.lens (\JobSample' {mode} -> mode) (\s@JobSample' {} a -> s {mode = a} :: JobSample) -- | The @Size@ parameter is only required when the mode is CUSTOM_ROWS. The -- profile job is run on the specified number of rows. The maximum value -- for size is Long.MAX_VALUE. -- -- Long.MAX_VALUE = 9223372036854775807 jobSample_size :: Lens.Lens' JobSample (Prelude.Maybe Prelude.Integer) jobSample_size = Lens.lens (\JobSample' {size} -> size) (\s@JobSample' {} a -> s {size = a} :: JobSample) instance Data.FromJSON JobSample where parseJSON = Data.withObject "JobSample" ( \x -> JobSample' Prelude.<$> (x Data..:? "Mode") Prelude.<*> (x Data..:? "Size") ) instance Prelude.Hashable JobSample where hashWithSalt _salt JobSample' {..} = _salt `Prelude.hashWithSalt` mode `Prelude.hashWithSalt` size instance Prelude.NFData JobSample where rnf JobSample' {..} = Prelude.rnf mode `Prelude.seq` Prelude.rnf size instance Data.ToJSON JobSample where toJSON JobSample' {..} = Data.object ( Prelude.catMaybes [ ("Mode" Data..=) Prelude.<$> mode, ("Size" Data..=) Prelude.<$> size ] )