package awsiot import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnDimension`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnDimensionProps := &CfnDimensionProps{ // StringValues: []*string{ // jsii.String("stringValues"), // }, // Type: jsii.String("type"), // // // the properties below are optional // Name: jsii.String("name"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html // type CfnDimensionProps struct { // 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/#"). // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-stringvalues // StringValues *[]*string `field:"required" json:"stringValues" yaml:"stringValues"` // Specifies the type of dimension. // // Supported types: `TOPIC_FILTER.` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-type // Type *string `field:"required" json:"type" yaml:"type"` // A unique identifier for the dimension. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-name // Name *string `field:"optional" json:"name" yaml:"name"` // Metadata that can be used to manage the dimension. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }