Show / Hide Table of Contents

Class ModelReference

A reference to a Model resource.

Inheritance
object
ModelReference
Implements
IModelReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

ModelName

The ModelName of the Model resource.

public string ModelName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IModelReference
Back to top Generated by DocFX