@Stability(value=Stable)
public static interface CfnAlarmModel.SimpleRuleProperty
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.iotevents.*;
SimpleRuleProperty simpleRuleProperty = SimpleRuleProperty.builder()
.comparisonOperator("comparisonOperator")
.inputProperty("inputProperty")
.threshold("threshold")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAlarmModel.SimpleRuleProperty.Builder
A builder for
CfnAlarmModel.SimpleRuleProperty |
static class |
CfnAlarmModel.SimpleRuleProperty.Jsii$Proxy
An implementation for
CfnAlarmModel.SimpleRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAlarmModel.SimpleRuleProperty.Builder |
builder() |
String |
getComparisonOperator()
The comparison operator.
|
String |
getInputProperty()
The value on the left side of the comparison operator.
|
String |
getThreshold()
The value on the right side of the comparison operator.
|
@Stability(value=Stable) @NotNull String getComparisonOperator()
@Stability(value=Stable) @NotNull String getInputProperty()
You can specify an AWS IoT Events input attribute as an input property.
@Stability(value=Stable) @NotNull String getThreshold()
You can enter a number or specify an AWS IoT Events input attribute.
@Stability(value=Stable) static CfnAlarmModel.SimpleRuleProperty.Builder builder()
Copyright © 2022. All rights reserved.