@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.854Z") @Stability(value=Stable) public interface CfnCustomMetricProps 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.*;
CfnCustomMetricProps cfnCustomMetricProps = CfnCustomMetricProps.builder()
.metricType("metricType")
// the properties below are optional
.displayName("displayName")
.metricName("metricName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCustomMetricProps.Builder
A builder for
CfnCustomMetricProps |
static class |
CfnCustomMetricProps.Jsii$Proxy
An implementation for
CfnCustomMetricProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCustomMetricProps.Builder |
builder() |
default String |
getDisplayName()
The friendly name in the console for the custom metric.
|
default String |
getMetricName()
The name of the custom metric.
|
String |
getMetricType()
The type of the custom metric.
|
default List<CfnTag> |
getTags()
Metadata that can be used to manage the custom metric.
|
@Stability(value=Stable) @NotNull String getMetricType()
The type
numberonly takes a single metric value as an input, but when you submit the metrics value in the DeviceMetrics report, you must pass it as an array with a single value.
@Stability(value=Stable) @Nullable default String getDisplayName()
This name doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. You can update the friendly name after you define it.
@Stability(value=Stable) @Nullable default String getMetricName()
This will be used in the metric report submitted from the device/thing. The name can't begin with aws: . You can’t change the name after you define it.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCustomMetricProps.Builder builder()
CfnCustomMetricProps.Builder of CfnCustomMetricPropsCopyright © 2022. All rights reserved.