interface UserPropertyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.UserPropertyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_UserPropertyProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.UserPropertyProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.UserPropertyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » UserPropertyProperty |
A key-value pair that you define in the header.
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 userPropertyProperty: iot_mixins.CfnTopicRulePropsMixin.UserPropertyProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | A key to be specified in UserProperty . |
| value? | string | A value to be specified in UserProperty . |
key?
Type:
string
(optional)
A key to be specified in UserProperty .
value?
Type:
string
(optional)
A value to be specified in UserProperty .

.NET
Go
Java
Python
TypeScript