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