interface SourceAlgorithmProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.SourceAlgorithmProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.SourceAlgorithmProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.SourceAlgorithmProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » SourceAlgorithmProperty |
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 sourceAlgorithmProperty: sagemaker.CfnModelCard.SourceAlgorithmProperty = {
algorithmName: 'algorithmName',
// the properties below are optional
modelDataUrl: 'modelDataUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| algorithm | string | CfnModelCard.SourceAlgorithmProperty.AlgorithmName. |
| model | string | CfnModelCard.SourceAlgorithmProperty.ModelDataUrl. |
algorithmName
Type:
string
CfnModelCard.SourceAlgorithmProperty.AlgorithmName.
modelDataUrl?
Type:
string
(optional)
CfnModelCard.SourceAlgorithmProperty.ModelDataUrl.

.NET
Java
Python
TypeScript