Class CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputConfigProperty
The output configuration for monitoring jobs.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputConfigProperty : CfnModelExplainabilityJobDefinitionPropsMixin.IMonitoringOutputConfigProperty
Syntax (vb)
Public Class CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringOutputConfigProperty Implements CfnModelExplainabilityJobDefinitionPropsMixin.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
Constructors
| MonitoringOutputConfigProperty() | The output configuration 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. |
| MonitoringOutputs | Monitoring outputs for monitoring jobs. |
Constructors
MonitoringOutputConfigProperty()
The output configuration for monitoring jobs.
public MonitoringOutputConfigProperty()
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"
}
} }
};
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.
public string? KmsKeyId { get; set; }
Property Value
Remarks
MonitoringOutputs
Monitoring outputs for monitoring jobs.
public object? MonitoringOutputs { get; set; }
Property Value
Remarks
This is where the output of the periodic monitoring jobs is uploaded.
Type union: either IResolvable or (either IResolvable or CfnModelExplainabilityJobDefinitionPropsMixin.IMonitoringOutputProperty)[]