Show / Hide Table of Contents

Class CfnAssetModel.ExpressionVariableProperty

Contains expression variable information.

Inheritance
System.Object
CfnAssetModel.ExpressionVariableProperty
Implements
CfnAssetModel.IExpressionVariableProperty
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ExpressionVariableProperty : Object, CfnAssetModel.IExpressionVariableProperty
Syntax (vb)
Public Class ExpressionVariableProperty
    Inherits Object
    Implements CfnAssetModel.IExpressionVariableProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-expressionvariable.html

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 expressionVariableProperty = new ExpressionVariableProperty {
    Name = "name",
    Value = new VariableValueProperty {
        HierarchyExternalId = "hierarchyExternalId",
        HierarchyId = "hierarchyId",
        HierarchyLogicalId = "hierarchyLogicalId",
        PropertyExternalId = "propertyExternalId",
        PropertyId = "propertyId",
        PropertyLogicalId = "propertyLogicalId",
        PropertyPath = new [] { new PropertyPathDefinitionProperty {
            Name = "name"
        } }
    }
};

Synopsis

Constructors

ExpressionVariableProperty()

Properties

Name

The friendly name of the variable to be used in the expression.

Value

The variable that identifies an asset property from which to use values.

Constructors

ExpressionVariableProperty()

public ExpressionVariableProperty()

Properties

Name

The friendly name of the variable to be used in the expression.

public string Name { get; set; }
Property Value

System.String

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-expressionvariable.html#cfn-iotsitewise-assetmodel-expressionvariable-name

Value

The variable that identifies an asset property from which to use values.

public object Value { get; set; }
Property Value

System.Object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-expressionvariable.html#cfn-iotsitewise-assetmodel-expressionvariable-value

Implements

CfnAssetModel.IExpressionVariableProperty
Back to top Generated by DocFX