Class: Aws::SageMaker::Types::MonitoringOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringOutput
- Defined in:
- gems/aws-sdk-sagemaker/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
29657 29658 29659 29660 29661 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 29657 class MonitoringOutput < Struct.new( :s3_output) SENSITIVE = [] include Aws::Structure end |