interface MonitoringOutputConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDataQualityJobDefinition_MonitoringOutputConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDataQualityJobDefinition.MonitoringOutputConfigProperty |
Python | aws_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
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.