interface MonitoringOutputProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelQualityJobDefinition.MonitoringOutputProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnModelQualityJobDefinition.MonitoringOutputProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnModelQualityJobDefinition.MonitoringOutputProperty | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnModelQualityJobDefinition»MonitoringOutputProperty | 
The output object for a monitoring job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const monitoringOutputProperty: sagemaker.CfnModelQualityJobDefinition.MonitoringOutputProperty = {
  s3Output: {
    localPath: 'localPath',
    s3Uri: 's3Uri',
    // the properties below are optional
    s3UploadMode: 's3UploadMode',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| s3 | IResolvable | S3 | The Amazon S3 storage location where the results of a monitoring job are saved. | 
s3Output
Type:
IResolvable | S3
The Amazon S3 storage location where the results of a monitoring job are saved.
