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