public static interface CfnAlarmModel.SimpleRuleProperty
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() |
java.lang.String |
getComparisonOperator()
The comparison operator.
|
java.lang.String |
getInputProperty()
The value on the left side of the comparison operator.
|
java.lang.String |
getThreshold()
The value on the right side of the comparison operator.
|
java.lang.String getComparisonOperator()
java.lang.String getInputProperty()
You can specify an AWS IoT Events input attribute as an input property.
java.lang.String getThreshold()
You can enter a number or specify an AWS IoT Events input attribute.
static CfnAlarmModel.SimpleRuleProperty.Builder builder()