Class ModelReference
A reference to a Model resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ModelReference : IModelReference
Syntax (vb)
Public Class ModelReference Implements IModelReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Sagemaker;
var modelReference = new ModelReference {
ModelArn = "modelArn"
};
Synopsis
Constructors
| ModelReference() | A reference to a Model resource. |
Properties
| ModelArn | The ModelArn of the Model resource. |
Constructors
ModelReference()
A reference to a Model resource.
public ModelReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Sagemaker;
var modelReference = new ModelReference {
ModelArn = "modelArn"
};
Properties
ModelArn
The ModelArn of the Model resource.
public string ModelArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated