Class: Aws::FraudDetector::Types::ModelOutputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::ModelOutputConfiguration
- Defined in:
- gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb
Overview
Note:
When making an API call, you may pass ModelOutputConfiguration data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#csv_index_to_variable_map ⇒ Hash<String,String>
A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.
-
#format ⇒ String
The format of the model output configuration.
-
#json_key_to_variable_map ⇒ Hash<String,String>
A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.
Instance Attribute Details
#csv_index_to_variable_map ⇒ Hash<String,String>
A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.
2449 2450 2451 2452 2453 2454 2455 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 2449 class ModelOutputConfiguration < Struct.new( :format, :json_key_to_variable_map, :csv_index_to_variable_map) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
The format of the model output configuration.
2449 2450 2451 2452 2453 2454 2455 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 2449 class ModelOutputConfiguration < Struct.new( :format, :json_key_to_variable_map, :csv_index_to_variable_map) SENSITIVE = [] include Aws::Structure end |
#json_key_to_variable_map ⇒ Hash<String,String>
A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.
2449 2450 2451 2452 2453 2454 2455 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 2449 class ModelOutputConfiguration < Struct.new( :format, :json_key_to_variable_map, :csv_index_to_variable_map) SENSITIVE = [] include Aws::Structure end |