Interface CfnDimensionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDimensionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.156Z")
@Stability(Stable)
public interface CfnDimensionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDimensionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iot.*;
CfnDimensionMixinProps cfnDimensionMixinProps = CfnDimensionMixinProps.builder()
.name("name")
.stringValues(List.of("stringValues"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDimensionMixinPropsstatic final classAn implementation forCfnDimensionMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A unique identifier for the dimension.- See Also:
-
getStringValues
Specifies the value or list of values for the dimension.For
TOPIC_FILTERdimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").- See Also:
-
getTags
Metadata that can be used to manage the dimension.- See Also:
-
getType
Specifies the type of dimension.Supported types:
TOPIC_FILTER.- See Also:
-
builder
- Returns:
- a
CfnDimensionMixinProps.BuilderofCfnDimensionMixinProps
-