interface AssetPropertyVariantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRule.AssetPropertyVariantProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRule.AssetPropertyVariantProperty |
Python | aws_cdk.aws_iot.CfnTopicRule.AssetPropertyVariantProperty |
TypeScript | @aws-cdk/aws-iot » CfnTopicRule » AssetPropertyVariantProperty |
Contains an asset property value (of a single type).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot from '@aws-cdk/aws-iot';
const assetPropertyVariantProperty: iot.CfnTopicRule.AssetPropertyVariantProperty = {
booleanValue: 'booleanValue',
doubleValue: 'doubleValue',
integerValue: 'integerValue',
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| boolean | string | Optional. |
| double | string | Optional. |
| integer | string | Optional. |
| string | string | Optional. |
booleanValue?
Type:
string
(optional)
Optional.
A string that contains the boolean value ( true or false ) of the value entry. Accepts substitution templates.
doubleValue?
Type:
string
(optional)
Optional.
A string that contains the double value of the value entry. Accepts substitution templates.
integerValue?
Type:
string
(optional)
Optional.
A string that contains the integer value of the value entry. Accepts substitution templates.
stringValue?
Type:
string
(optional)
Optional.
The string value of the value entry. Accepts substitution templates.

.NET
Java
Python
TypeScript