Class: Aws::SageMaker::Types::ModelExplainabilityJobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelExplainabilityJobInput
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ModelExplainabilityJobInput data as a hash:
{
endpoint_input: { # required
endpoint_name: "EndpointName", # required
local_path: "ProcessingLocalPath", # required
s3_input_mode: "Pipe", # accepts Pipe, File
s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
features_attribute: "String",
inference_attribute: "String",
probability_attribute: "String",
probability_threshold_attribute: 1.0,
start_time_offset: "MonitoringTimeOffsetString",
end_time_offset: "MonitoringTimeOffsetString",
},
}
Inputs for the model explainability job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_input ⇒ Types::EndpointInput
Input object for the endpoint.
Instance Attribute Details
#endpoint_input ⇒ Types::EndpointInput
Input object for the endpoint
28309 28310 28311 28312 28313 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28309 class ModelExplainabilityJobInput < Struct.new( :endpoint_input) SENSITIVE = [] include Aws::Structure end |