AlgorithmReference

class aws_cdk.interfaces.aws_sagemaker.AlgorithmReference(*, algorithm_arn)

Bases: object

A reference to a Algorithm resource.

Parameters:

algorithm_arn (str) – The AlgorithmArn of the Algorithm resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_sagemaker as interfaces_sagemaker

algorithm_reference = interfaces_sagemaker.AlgorithmReference(
    algorithm_arn="algorithmArn"
)

Attributes

algorithm_arn

The AlgorithmArn of the Algorithm resource.