interface MetricsSourceProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.MetricsSourceProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.MetricsSourceProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnModelPackage.MetricsSourceProperty | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnModelPackage»MetricsSourceProperty | 
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const metricsSourceProperty: sagemaker.CfnModelPackage.MetricsSourceProperty = {
  contentType: 'contentType',
  s3Uri: 's3Uri',
  // the properties below are optional
  contentDigest: 'contentDigest',
};
Properties
| Name | Type | Description | 
|---|---|---|
| content | string | The metric source content type. | 
| s3 | string | The S3 URI for the metrics source. | 
| content | string | The hash key used for the metrics source. | 
contentType
Type:
string
The metric source content type.
s3Uri
Type:
string
The S3 URI for the metrics source.
contentDigest?
Type:
string
(optional)
The hash key used for the metrics source.
