Class CfnMonitoringSchedule.MonitoringResourcesProperty
Identifies the resources to deploy for a monitoring job.
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMonitoringSchedule.MonitoringResourcesProperty : CfnMonitoringSchedule.IMonitoringResourcesProperty
Syntax (vb)
Public Class CfnMonitoringSchedule.MonitoringResourcesProperty Implements CfnMonitoringSchedule.IMonitoringResourcesProperty
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.AWS.Sagemaker;
var monitoringResourcesProperty = new MonitoringResourcesProperty {
ClusterConfig = new ClusterConfigProperty {
InstanceCount = 123,
InstanceType = "instanceType",
VolumeSizeInGb = 123,
// the properties below are optional
VolumeKmsKeyId = "volumeKmsKeyId"
}
};
Synopsis
Constructors
MonitoringResourcesProperty() | Identifies the resources to deploy for a monitoring job. |
Properties
ClusterConfig | The configuration for the cluster resources used to run the processing job. |
Constructors
MonitoringResourcesProperty()
Identifies the resources to deploy for a monitoring job.
public MonitoringResourcesProperty()
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.AWS.Sagemaker;
var monitoringResourcesProperty = new MonitoringResourcesProperty {
ClusterConfig = new ClusterConfigProperty {
InstanceCount = 123,
InstanceType = "instanceType",
VolumeSizeInGb = 123,
// the properties below are optional
VolumeKmsKeyId = "volumeKmsKeyId"
}
};
Properties
ClusterConfig
The configuration for the cluster resources used to run the processing job.
public object ClusterConfig { get; set; }