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.ValidationConfiguration

Description

 
Synopsis

Documentation

data ValidationConfiguration Source #

Configuration for data quality validation. Used to select the Rulesets and Validation Mode to be used in the profile job. When ValidationConfiguration is null, the profile job will run without data quality validation.

See: newValidationConfiguration smart constructor.

Constructors

ValidationConfiguration' 

Fields

  • validationMode :: Maybe ValidationMode

    Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.

  • rulesetArn :: Text

    The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.

Instances

Instances details
FromJSON ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

ToJSON ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

Generic ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

Associated Types

type Rep ValidationConfiguration :: Type -> Type #

Read ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

Show ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

NFData ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

Methods

rnf :: ValidationConfiguration -> () #

Eq ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

Hashable ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

type Rep ValidationConfiguration Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ValidationConfiguration

type Rep ValidationConfiguration = D1 ('MetaData "ValidationConfiguration" "Amazonka.DataBrew.Types.ValidationConfiguration" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "ValidationConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "validationMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ValidationMode)) :*: S1 ('MetaSel ('Just "rulesetArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newValidationConfiguration Source #

Create a value of ValidationConfiguration 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:validationMode:ValidationConfiguration', validationConfiguration_validationMode - Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.

$sel:rulesetArn:ValidationConfiguration', validationConfiguration_rulesetArn - The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.

validationConfiguration_validationMode :: Lens' ValidationConfiguration (Maybe ValidationMode) Source #

Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.

validationConfiguration_rulesetArn :: Lens' ValidationConfiguration Text Source #

The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.