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