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 {
ModelId = "modelId",
ModelName = "modelName"
};
Synopsis
Constructors
| ModelReference() | A reference to a Model resource. |
Properties
| ModelId | The Id of the Model resource. |
| ModelName | The ModelName 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 {
ModelId = "modelId",
ModelName = "modelName"
};
Properties
ModelId
The Id of the Model resource.
public string ModelId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ModelName
The ModelName of the Model resource.
public string ModelName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated