Show / Hide Table of Contents

Interface CfnComponentType.IDataValueProperty

An object that specifies a value for a property.

Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnComponentType.IDataValueProperty
Syntax (vb)
Public Interface CfnComponentType.IDataValueProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.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.IoTTwinMaker;

             DataValueProperty dataValueProperty_;
             var relationshipValue;

             var dataValueProperty = new DataValueProperty {
                 BooleanValue = false,
                 DoubleValue = 123,
                 Expression = "expression",
                 IntegerValue = 123,
                 ListValue = new [] { dataValueProperty_ },
                 LongValue = 123,
                 MapValue = new Dictionary<string, object> {
                     { "mapValueKey", dataValueProperty_ }
                 },
                 RelationshipValue = relationshipValue,
                 StringValue = "stringValue"
             };

Synopsis

Properties

BooleanValue

A boolean value.

DoubleValue

A double value.

Expression

An expression that produces the value.

IntegerValue

An integer value.

ListValue

A list of multiple values.

LongValue

A long value.

MapValue

An object that maps strings to multiple DataValue objects.

RelationshipValue

A value that relates a component to another component.

StringValue

A string value.

Properties

BooleanValue

A boolean value.

object? BooleanValue { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-booleanvalue

Type union: either bool or IResolvable

DoubleValue

A double value.

double? DoubleValue { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-doublevalue

Expression

An expression that produces the value.

string? Expression { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-expression

IntegerValue

An integer value.

double? IntegerValue { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-integervalue

ListValue

A list of multiple values.

object? ListValue { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-listvalue

Type union: either IResolvable or (either IResolvable or CfnComponentType.IDataValueProperty)[]

LongValue

A long value.

double? LongValue { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-longvalue

MapValue

An object that maps strings to multiple DataValue objects.

object? MapValue { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-mapvalue

Type union: either IResolvable or Dictionary<string, either IResolvable or CfnComponentType.IDataValueProperty>

RelationshipValue

A value that relates a component to another component.

object? RelationshipValue { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-relationshipvalue

StringValue

A string value.

string? StringValue { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-datavalue.html#cfn-iottwinmaker-componenttype-datavalue-stringvalue

Back to top Generated by DocFX