Interface CfnDataQualityJobDefinitionPropsMixin.MonitoringResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataQualityJobDefinitionPropsMixin.MonitoringResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnDataQualityJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnDataQualityJobDefinitionPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
MonitoringResourcesProperty monitoringResourcesProperty = MonitoringResourcesProperty.builder()
.clusterConfig(ClusterConfigProperty.builder()
.instanceCount(123)
.instanceType("instanceType")
.volumeKmsKeyId("volumeKmsKeyId")
.volumeSizeInGb(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataQualityJobDefinitionPropsMixin.MonitoringResourcesProperty -
Method Summary
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
IResolvableorCfnDataQualityJobDefinitionPropsMixin.ClusterConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnDataQualityJobDefinitionPropsMixin.MonitoringResourcesProperty.Builder builder()
-