Interface CfnMonitoringSchedule.MonitoringResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedule.MonitoringResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedule
@Stability(Stable)
public static interface CfnMonitoringSchedule.MonitoringResourcesProperty
extends software.amazon.jsii.JsiiSerializable
Identifies the resources to deploy for a monitoring job.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; MonitoringResourcesProperty monitoringResourcesProperty = MonitoringResourcesProperty.builder() .clusterConfig(ClusterConfigProperty.builder() .instanceCount(123) .instanceType("instanceType") .volumeSizeInGb(123) // the properties below are optional .volumeKmsKeyId("volumeKmsKeyId") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMonitoringSchedule.MonitoringResourcesProperty
static final class
An implementation forCfnMonitoringSchedule.MonitoringResourcesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The configuration for the cluster resources used to run the processing job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterConfig
The configuration for the cluster resources used to run the processing job.- See Also:
-
builder
-