Show / Hide Table of Contents

Class AssetModelReference

A reference to a AssetModel resource.

Inheritance
object
AssetModelReference
Implements
IAssetModelReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AssetModelReference : IAssetModelReference
Syntax (vb)
Public Class AssetModelReference Implements IAssetModelReference
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.AWS.IoTSiteWise;

            var assetModelReference = new AssetModelReference {
                AssetModelArn = "assetModelArn",
                AssetModelId = "assetModelId"
            };

Synopsis

Constructors

AssetModelReference()

A reference to a AssetModel resource.

Properties

AssetModelArn

The ARN of the AssetModel resource.

AssetModelId

The AssetModelId of the AssetModel resource.

Constructors

AssetModelReference()

A reference to a AssetModel resource.

public AssetModelReference()
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.AWS.IoTSiteWise;

            var assetModelReference = new AssetModelReference {
                AssetModelArn = "assetModelArn",
                AssetModelId = "assetModelId"
            };

Properties

AssetModelArn

The ARN of the AssetModel resource.

public string AssetModelArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

AssetModelId

The AssetModelId of the AssetModel resource.

public string AssetModelId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAssetModelReference
Back to top Generated by DocFX