InferenceExperimentReference

class aws_cdk.aws_sagemaker.InferenceExperimentReference(*, inference_experiment_arn, inference_experiment_name)

Bases: object

A reference to a InferenceExperiment resource.

Parameters:
  • inference_experiment_arn (str) – The ARN of the InferenceExperiment resource.

  • inference_experiment_name (str) – The Name of the InferenceExperiment 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 import aws_sagemaker as sagemaker

inference_experiment_reference = sagemaker.InferenceExperimentReference(
    inference_experiment_arn="inferenceExperimentArn",
    inference_experiment_name="inferenceExperimentName"
)

Attributes

inference_experiment_arn

The ARN of the InferenceExperiment resource.

inference_experiment_name

The Name of the InferenceExperiment resource.