Class: Aws::SageMaker::Types::MonitoringOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass MonitoringOutput data as a hash:
{
s3_output: { # required
s3_uri: "MonitoringS3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
},
}
The output object for a monitoring job.
Instance Attribute Summary collapse
-
#s3_output ⇒ Types::MonitoringS3Output
The Amazon S3 storage location where the results of a monitoring job are saved.
Instance Attribute Details
#s3_output ⇒ Types::MonitoringS3Output
The Amazon S3 storage location where the results of a monitoring job are saved.
15008 15009 15010 15011 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15008 class MonitoringOutput < Struct.new( :s3_output) include Aws::Structure end |