libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector
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.FraudDetector.Types.ModelInputConfiguration

Description

 
Synopsis

Documentation

data ModelInputConfiguration Source #

The Amazon SageMaker model input configuration.

See: newModelInputConfiguration smart constructor.

Constructors

ModelInputConfiguration' 

Fields

  • format :: Maybe ModelInputDataFormat

    The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

  • eventTypeName :: Maybe Text

    The event type name.

  • csvInputTemplate :: Maybe Text

    Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

  • jsonInputTemplate :: Maybe Text

    Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.

  • useEventVariables :: Bool

    The event variables.

Instances

Instances details
Eq ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Read ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Show ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Generic ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Associated Types

type Rep ModelInputConfiguration :: Type -> Type #

NFData ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

Methods

rnf :: ModelInputConfiguration -> () #

Hashable ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

ToJSON ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

FromJSON ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

type Rep ModelInputConfiguration Source # 
Instance details

Defined in Amazonka.FraudDetector.Types.ModelInputConfiguration

type Rep ModelInputConfiguration = D1 ('MetaData "ModelInputConfiguration" "Amazonka.FraudDetector.Types.ModelInputConfiguration" "libZSservicesZSamazonka-frauddetectorZSamazonka-frauddetector" 'False) (C1 ('MetaCons "ModelInputConfiguration'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelInputDataFormat)) :*: S1 ('MetaSel ('Just "eventTypeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "csvInputTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "jsonInputTemplate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "useEventVariables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool)))))

newModelInputConfiguration Source #

Create a value of ModelInputConfiguration 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:format:ModelInputConfiguration', modelInputConfiguration_format - The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

$sel:eventTypeName:ModelInputConfiguration', modelInputConfiguration_eventTypeName - The event type name.

$sel:csvInputTemplate:ModelInputConfiguration', modelInputConfiguration_csvInputTemplate - Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

$sel:jsonInputTemplate:ModelInputConfiguration', modelInputConfiguration_jsonInputTemplate - Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.

$sel:useEventVariables:ModelInputConfiguration', modelInputConfiguration_useEventVariables - The event variables.

modelInputConfiguration_format :: Lens' ModelInputConfiguration (Maybe ModelInputDataFormat) Source #

The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

modelInputConfiguration_csvInputTemplate :: Lens' ModelInputConfiguration (Maybe Text) Source #

Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

modelInputConfiguration_jsonInputTemplate :: Lens' ModelInputConfiguration (Maybe Text) Source #

Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.