interface MetricsSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.MetricsSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_MetricsSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.MetricsSourceProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.MetricsSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const metricsSourceProperty: sagemaker_mixins.CfnModelPackagePropsMixin.MetricsSourceProperty = {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The hash key used for the metrics source. |
| content | string | The metric source content type. |
| s3 | string | The S3 URI for the metrics source. |
contentDigest?
Type:
string
(optional)
The hash key used for the metrics source.
contentType?
Type:
string
(optional)
The metric source content type.
s3Uri?
Type:
string
(optional)
The S3 URI for the metrics source.

.NET
Go
Java
Python
TypeScript