aws-cdk-lib.aws_iottwinmaker.CfnEntity.PropertyProperty

interface PropertyProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTTwinMaker.CfnEntity.PropertyProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnEntity_PropertyProperty
Javasoftware.amazon.awscdk.services.iottwinmaker.CfnEntity.PropertyProperty
Pythonaws_cdk.aws_iottwinmaker.CfnEntity.PropertyProperty
TypeScript aws-cdk-lib » aws_iottwinmaker » CfnEntity » PropertyProperty

An object that sets information about a property.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iottwinmaker as iottwinmaker } from 'aws-cdk-lib';

declare const dataValueProperty_: iottwinmaker.CfnEntity.DataValueProperty;
declare const definition: any;
declare const relationshipValue: any;
const propertyProperty: iottwinmaker.CfnEntity.PropertyProperty = {
  definition: definition,
  value: {
    booleanValue: false,
    doubleValue: 123,
    expression: 'expression',
    integerValue: 123,
    listValue: [dataValueProperty_],
    longValue: 123,
    mapValue: {
      mapValueKey: dataValueProperty_,
    },
    relationshipValue: relationshipValue,
    stringValue: 'stringValue',
  },
};

Properties

NameTypeDescription
definition?anyAn object that specifies information about a property.
value?IResolvable | DataValuePropertyAn object that contains information about a value for a time series property.

definition?

Type: any (optional)

An object that specifies information about a property.


value?

Type: IResolvable | DataValueProperty (optional)

An object that contains information about a value for a time series property.