interface MetadataPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.MetadataPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_MetadataPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.MetadataPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.MetadataPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const metadataPropertiesProperty: sagemaker_mixins.CfnModelPackagePropsMixin.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
Go
Java
Python
TypeScript