Class: Aws::SageMaker::Types::MonitoringInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass MonitoringInput 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
  },
}

The inputs for a monitoring job.

Instance Attribute Summary collapse

Instance Attribute Details

#endpoint_inputTypes::EndpointInput

The endpoint for a monitoring job.



14857
14858
14859
14860
# File 'lib/aws-sdk-sagemaker/types.rb', line 14857

class MonitoringInput < Struct.new(
  :endpoint_input)
  include Aws::Structure
end