interface MonitoringOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelBiasJobDefinitionPropsMixin_MonitoringOutputConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelBiasJobDefinitionPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const monitoringOutputConfigProperty: sagemaker_mixins.CfnModelBiasJobDefinitionPropsMixin.MonitoringOutputConfigProperty = {
kmsKeyId: 'kmsKeyId',
monitoringOutputs: [{
s3Output: {
localPath: 'localPath',
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The AWS Key Management Service ( AWS ) key that Amazon SageMaker AI uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption. |
| monitoring | IResolvable | (IResolvable | Monitoring)[] | Monitoring outputs for monitoring jobs. |
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service ( AWS ) key that Amazon SageMaker AI uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
monitoringOutputs?
Type:
IResolvable | (IResolvable | Monitoring)[]
(optional)
Monitoring outputs for monitoring jobs.
This is where the output of the periodic monitoring jobs is uploaded.

.NET
Go
Java
Python
TypeScript