Interface CfnModelBiasJobDefinition.MonitoringResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelBiasJobDefinition.MonitoringResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnModelBiasJobDefinition
@Stability(Stable)
public static interface CfnModelBiasJobDefinition.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelBiasJobDefinition.MonitoringResourcesPropertystatic final classAn implementation forCfnModelBiasJobDefinition.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.Returns union: either
IResolvableorCfnModelBiasJobDefinition.ClusterConfigProperty- See Also:
-
builder
-