aws-cdk-lib.aws_sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty

interface MonitoringOutputConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDataQualityJobDefinition_MonitoringOutputConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnDataQualityJobDefinition » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const monitoringOutputConfigProperty: sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty = {
  monitoringOutputs: [{
    s3Output: {
      localPath: 'localPath',
      s3Uri: 's3Uri',

      // the properties below are optional
      s3UploadMode: 's3UploadMode',
    },
  }],

  // the properties below are optional
  kmsKeyId: 'kmsKeyId',
};

Properties

NameTypeDescription
monitoringOutputsIResolvable | IResolvable | MonitoringOutputProperty[]Monitoring outputs for monitoring jobs.
kmsKeyId?stringThe 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 | MonitoringOutputProperty[]

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.