Interface CfnModelQualityJobDefinitionPropsMixin.IMonitoringOutputConfigProperty
The output configuration for monitoring jobs.
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnModelQualityJobDefinitionPropsMixin.IMonitoringOutputConfigProperty
Syntax (vb)
Public Interface CfnModelQualityJobDefinitionPropsMixin.IMonitoringOutputConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var monitoringOutputConfigProperty = new MonitoringOutputConfigProperty {
KmsKeyId = "kmsKeyId",
MonitoringOutputs = new [] { new MonitoringOutputProperty {
S3Output = new S3OutputProperty {
LocalPath = "localPath",
S3UploadMode = "s3UploadMode",
S3Uri = "s3Uri"
}
} }
};
Synopsis
Properties
| KmsKeyId | 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 | Monitoring outputs for monitoring jobs. |
Properties
KmsKeyId
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.
string? KmsKeyId { get; }
Property Value
Remarks
MonitoringOutputs
Monitoring outputs for monitoring jobs.
object? MonitoringOutputs { get; }
Property Value
Remarks
This is where the output of the periodic monitoring jobs is uploaded.
Type union: either IResolvable or (either IResolvable or CfnModelQualityJobDefinitionPropsMixin.IMonitoringOutputProperty)[]