interface AssetPropertyVariantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRule.AssetPropertyVariantProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnTopicRule_AssetPropertyVariantProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRule.AssetPropertyVariantProperty |
Python | aws_cdk.aws_iot.CfnTopicRule.AssetPropertyVariantProperty |
TypeScript | aws-cdk-lib » 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 { aws_iot as iot } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript