interface AlgorithmReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.AlgorithmReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#AlgorithmReference |
Java | software.amazon.awscdk.interfaces.sagemaker.AlgorithmReference |
Python | aws_cdk.interfaces.aws_sagemaker.AlgorithmReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » AlgorithmReference |
A reference to a Algorithm resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const algorithmReference: interfaces_sagemaker.AlgorithmReference = {
algorithmArn: 'algorithmArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| algorithm | string | The AlgorithmArn of the Algorithm resource. |
algorithmArn
Type:
string
The AlgorithmArn of the Algorithm resource.

.NET
Go
Java
Python
TypeScript