@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.855Z") @Stability(value=Stable) public interface CfnDimensionProps extends software.amazon.jsii.JsiiSerializable
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 String |
getName()
A unique identifier for the dimension.
|
List<String> |
getStringValues()
Specifies the value or list of values for the dimension.
|
default List<CfnTag> |
getTags()
Metadata that can be used to manage the dimension.
|
String |
getType()
Specifies the type of dimension.
|
@Stability(value=Stable) @NotNull List<String> getStringValues()
For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
@Stability(value=Stable) @NotNull String getType()
Supported types: TOPIC_FILTER.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDimensionProps.Builder builder()
CfnDimensionProps.Builder of CfnDimensionPropsCopyright © 2022. All rights reserved.