Interface CfnModelPackage.MetricsSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackage.MetricsSourceProperty.Jsii$Proxy
Enclosing class:
CfnModelPackage

@Stability(Stable) public static interface CfnModelPackage.MetricsSourceProperty extends software.amazon.jsii.JsiiSerializable
Details about the metrics source.

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.*;
 MetricsSourceProperty metricsSourceProperty = MetricsSourceProperty.builder()
         .contentType("contentType")
         .s3Uri("s3Uri")
         // the properties below are optional
         .contentDigest("contentDigest")
         .build();
 

See Also: