@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-17T17:31:10.195Z")
public interface CfnDimensionProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iot.*; CfnDimensionProps cfnDimensionProps = CfnDimensionProps.builder() .stringValues(List.of("stringValues")) .type("type") // the properties below are optional .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDimensionProps.Builder
A builder for
CfnDimensionProps |
static class |
CfnDimensionProps.Jsii$Proxy
An implementation for
CfnDimensionProps |
Modifier and Type | Method and Description |
---|---|
static CfnDimensionProps.Builder |
builder() |
default java.lang.String |
getName()
A unique identifier for the dimension.
|
java.util.List<java.lang.String> |
getStringValues()
Specifies the value or list of values for the dimension.
|
default java.util.List<CfnTag> |
getTags()
Metadata that can be used to manage the dimension.
|
java.lang.String |
getType()
Specifies the type of dimension.
|
java.util.List<java.lang.String> getStringValues()
For TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
java.lang.String getType()
Supported types: TOPIC_FILTER.
default java.lang.String getName()
default java.util.List<CfnTag> getTags()
static CfnDimensionProps.Builder builder()
CfnDimensionProps.Builder
of CfnDimensionProps