interface MonitoringOutputConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelQualityJobDefinition.MonitoringOutputConfigProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnModelQualityJobDefinition.MonitoringOutputConfigProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnModelQualityJobDefinition.MonitoringOutputConfigProperty | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnModelQualityJobDefinition»MonitoringOutputConfigProperty | 
The output configuration for monitoring jobs.
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 monitoringOutputConfigProperty: sagemaker.CfnModelQualityJobDefinition.MonitoringOutputConfigProperty = {
  monitoringOutputs: [{
    s3Output: {
      localPath: 'localPath',
      s3Uri: 's3Uri',
      // the properties below are optional
      s3UploadMode: 's3UploadMode',
    },
  }],
  // the properties below are optional
  kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| monitoring | IResolvable | IResolvable | Monitoring[] | Monitoring outputs for monitoring jobs. | 
| kms | string | The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption. | 
monitoringOutputs
Type:
IResolvable | IResolvable | Monitoring[]
Monitoring outputs for monitoring jobs.
This is where the output of the periodic monitoring jobs is uploaded.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
