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
- Struct
- Aws::FraudDetector::Types::ModelInputConfiguration
- Defined in:
- (unknown)
Overview
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
-
#csv_input_template ⇒ String
Template for constructing the CSV input-data sent to SageMaker.
-
#event_type_name ⇒ String
The event type name.
-
#format ⇒ String
The format of the model input configuration.
-
#json_input_template ⇒ String
Template for constructing the JSON input-data sent to SageMaker.
-
#use_event_variables ⇒ Boolean
The event variables.
Instance Attribute Details
#csv_input_template ⇒ String
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.
#event_type_name ⇒ String
The event type name.
#format ⇒ String
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
#json_input_template ⇒ String
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.
#use_event_variables ⇒ Boolean
The event variables.