interface DataTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.CfnComponentType.DataTypeProperty |
Java | software.amazon.awscdk.services.iottwinmaker.CfnComponentType.DataTypeProperty |
Python | aws_cdk.aws_iottwinmaker.CfnComponentType.DataTypeProperty |
TypeScript | @aws-cdk/aws-iottwinmaker » CfnComponentType » DataTypeProperty |
An object that specifies the data type of a property.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iottwinmaker from '@aws-cdk/aws-iottwinmaker';
declare const dataTypeProperty_: iottwinmaker.CfnComponentType.DataTypeProperty;
declare const dataValueProperty_: iottwinmaker.CfnComponentType.DataValueProperty;
declare const relationshipValue: any;
const dataTypeProperty: iottwinmaker.CfnComponentType.DataTypeProperty = {
type: 'type',
// the properties below are optional
allowedValues: [{
booleanValue: false,
doubleValue: 123,
expression: 'expression',
integerValue: 123,
listValue: [dataValueProperty_],
longValue: 123,
mapValue: {
mapValueKey: dataValueProperty_,
},
relationshipValue: relationshipValue,
stringValue: 'stringValue',
}],
nestedType: {
type: 'type',
// the properties below are optional
allowedValues: [{
booleanValue: false,
doubleValue: 123,
expression: 'expression',
integerValue: 123,
listValue: [dataValueProperty_],
longValue: 123,
mapValue: {
mapValueKey: dataValueProperty_,
},
relationshipValue: relationshipValue,
stringValue: 'stringValue',
}],
nestedType: dataTypeProperty_,
relationship: {
relationshipType: 'relationshipType',
targetComponentTypeId: 'targetComponentTypeId',
},
unitOfMeasure: 'unitOfMeasure',
},
relationship: {
relationshipType: 'relationshipType',
targetComponentTypeId: 'targetComponentTypeId',
},
unitOfMeasure: 'unitOfMeasure',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The underlying type of the data type. |
| allowed | IResolvable | IResolvable | Data[] | The allowed values for this data type. |
| nested | IResolvable | Data | The nested type in the data type. |
| relationship? | IResolvable | Relationship | A relationship that associates a component with another component. |
| unit | string | The unit of measure used in this data type. |
type
Type:
string
The underlying type of the data type.
Valid Values: RELATIONSHIP | STRING | LONG | BOOLEAN | INTEGER | DOUBLE | LIST | MAP
allowedValues?
Type:
IResolvable | IResolvable | Data[]
(optional)
The allowed values for this data type.
nestedType?
Type:
IResolvable | Data
(optional)
The nested type in the data type.
relationship?
Type:
IResolvable | Relationship
(optional)
A relationship that associates a component with another component.
unitOfMeasure?
Type:
string
(optional)
The unit of measure used in this data type.

.NET
Java
Python
TypeScript