interface CfnDimensionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnDimensionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnDimensionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnDimensionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnDimensionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnDimensionMixinProps |
Properties for CfnDimensionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html
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 cfnDimensionMixinProps: iot.CfnDimensionMixinProps = {
name: 'name',
stringValues: ['stringValues'],
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | A unique identifier for the dimension. |
| string | string[] | Specifies the value or list of values for the dimension. |
| tags? | Cfn[] | Metadata that can be used to manage the dimension. |
| type? | string | Specifies the type of dimension. |
name?
Type:
string
(optional)
A unique identifier for the dimension.
stringValues?
Type:
string[]
(optional)
Specifies the value or list of values for the dimension.
For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the dimension.
type?
Type:
string
(optional)
Specifies the type of dimension.
Supported types: TOPIC_FILTER.

.NET
Go
Java
Python
TypeScript