interface SourceAlgorithmSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.SourceAlgorithmSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.SourceAlgorithmSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnModelPackage.SourceAlgorithmSpecificationProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelPackage » SourceAlgorithmSpecificationProperty |
A list of algorithms that were used to create a model package.
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 sourceAlgorithmSpecificationProperty: sagemaker.CfnModelPackage.SourceAlgorithmSpecificationProperty = {
sourceAlgorithms: [{
algorithmName: 'algorithmName',
// the properties below are optional
modelDataUrl: 'modelDataUrl',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | IResolvable | Source[] | A list of the algorithms that were used to create a model package. |
sourceAlgorithms
Type:
IResolvable | IResolvable | Source[]
A list of the algorithms that were used to create a model package.

.NET
Java
Python
TypeScript