interface SourceAlgorithmSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_SourceAlgorithmSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const sourceAlgorithmSpecificationProperty: sagemaker_mixins.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty = {
sourceAlgorithms: [{
algorithmName: 'algorithmName',
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)[]
(optional)
A list of the algorithms that were used to create a model package.

.NET
Go
Java
Python
TypeScript