libZSservicesZSamazonka-glueZSamazonka-glue
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.Glue.Types.JsonClassifier

Description

 
Synopsis

Documentation

data JsonClassifier Source #

A classifier for JSON content.

See: newJsonClassifier smart constructor.

Constructors

JsonClassifier' 

Fields

Instances

Instances details
Eq JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

Read JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

Show JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

Generic JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

Associated Types

type Rep JsonClassifier :: Type -> Type #

NFData JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

Methods

rnf :: JsonClassifier -> () #

Hashable JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

FromJSON JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

type Rep JsonClassifier Source # 
Instance details

Defined in Amazonka.Glue.Types.JsonClassifier

type Rep JsonClassifier = D1 ('MetaData "JsonClassifier" "Amazonka.Glue.Types.JsonClassifier" "libZSservicesZSamazonka-glueZSamazonka-glue" 'False) (C1 ('MetaCons "JsonClassifier'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "version") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "jsonPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newJsonClassifier Source #

Create a value of JsonClassifier 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:creationTime:JsonClassifier', jsonClassifier_creationTime - The time that this classifier was registered.

$sel:lastUpdated:JsonClassifier', jsonClassifier_lastUpdated - The time that this classifier was last updated.

$sel:version:JsonClassifier', jsonClassifier_version - The version of this classifier.

$sel:name:JsonClassifier', jsonClassifier_name - The name of the classifier.

$sel:jsonPath:JsonClassifier', jsonClassifier_jsonPath - A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

jsonClassifier_creationTime :: Lens' JsonClassifier (Maybe UTCTime) Source #

The time that this classifier was registered.

jsonClassifier_lastUpdated :: Lens' JsonClassifier (Maybe UTCTime) Source #

The time that this classifier was last updated.

jsonClassifier_version :: Lens' JsonClassifier (Maybe Integer) Source #

The version of this classifier.

jsonClassifier_name :: Lens' JsonClassifier Text Source #

The name of the classifier.

jsonClassifier_jsonPath :: Lens' JsonClassifier Text Source #

A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.