interface MetadataPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.MetadataPropertiesProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.MetadataPropertiesProperty |
Python | aws_cdk.aws_sagemaker.CfnModelPackage.MetadataPropertiesProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelPackage » MetadataPropertiesProperty |
Metadata properties of the tracking entity, trial, or trial component.
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 metadataPropertiesProperty: sagemaker.CfnModelPackage.MetadataPropertiesProperty = {
commitId: 'commitId',
generatedBy: 'generatedBy',
projectId: 'projectId',
repository: 'repository',
};
Properties
| Name | Type | Description |
|---|---|---|
| commit | string | The commit ID. |
| generated | string | The entity this entity was generated by. |
| project | string | The project ID. |
| repository? | string | The repository. |
commitId?
Type:
string
(optional)
The commit ID.
generatedBy?
Type:
string
(optional)
The entity this entity was generated by.
projectId?
Type:
string
(optional)
The project ID.
repository?
Type:
string
(optional)
The repository.

.NET
Java
Python
TypeScript