interface AssetPropertyVariantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.AssetPropertyVariantProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_AssetPropertyVariantProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.AssetPropertyVariantProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.AssetPropertyVariantProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const assetPropertyVariantProperty: iot_mixins.CfnTopicRulePropsMixin.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