interface SourceAlgorithmSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelPackagePropsMixin_SourceAlgorithmSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const sourceAlgorithmSpecificationProperty: sagemaker.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