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

Class: Aws::FraudDetector::Types::ModelOutputConfiguration

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

Overview

Note:

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

{
  format: "TEXT_CSV", # required, accepts TEXT_CSV, APPLICATION_JSONLINES
  json_key_to_variable_map: {
    "string" => "string",
  },
  csv_index_to_variable_map: {
    "string" => "string",
  },
}

Provides the Amazon Sagemaker model output configuration.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#csv_index_to_variable_mapHash<String,String>

A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.

Returns:

  • (Hash<String,String>)

    A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.

#formatString

The format of the model output configuration.

Possible values:

  • TEXT_CSV
  • APPLICATION_JSONLINES

Returns:

  • (String)

    The format of the model output configuration.

#json_key_to_variable_mapHash<String,String>

A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.

Returns:

  • (Hash<String,String>)

    A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.