You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::FraudDetector::Types::ModelInputConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModelInputConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  event_type_name: "identifier",
  format: "TEXT_CSV", # accepts TEXT_CSV, APPLICATION_JSON
  use_event_variables: false, # required
  json_input_template: "string",
  csv_input_template: "string",
}

The Amazon SageMaker model input configuration.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#csv_input_templateString

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.

Returns:

  • (String)

    Template for constructing the CSV input-data sent to SageMaker.

#event_type_nameString

The event type name.

Returns:

  • (String)

    The event type name.

#formatString

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.

Possible values:

  • TEXT_CSV
  • APPLICATION_JSON

Returns:

  • (String)

    The format of the model input configuration.

#json_input_templateString

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.

Returns:

  • (String)

    Template for constructing the JSON input-data sent to SageMaker.

#use_event_variablesBoolean

The event variables.

Returns:

  • (Boolean)

    The event variables.