public static interface CfnCampaign.MetricDimensionProperty
These criteria derive from custom metrics that you define for endpoints.
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.pinpoint.*; MetricDimensionProperty metricDimensionProperty = MetricDimensionProperty.builder() .comparisonOperator("comparisonOperator") .value(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.MetricDimensionProperty.Builder
A builder for
CfnCampaign.MetricDimensionProperty |
static class |
CfnCampaign.MetricDimensionProperty.Jsii$Proxy
An implementation for
CfnCampaign.MetricDimensionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.MetricDimensionProperty.Builder |
builder() |
default java.lang.String |
getComparisonOperator()
The operator to use when comparing metric values.
|
default java.lang.Number |
getValue()
The value to compare.
|
default java.lang.String getComparisonOperator()
Valid values are: GREATER_THAN
, LESS_THAN
, GREATER_THAN_OR_EQUAL
, LESS_THAN_OR_EQUAL
, and EQUAL
.
default java.lang.Number getValue()
static CfnCampaign.MetricDimensionProperty.Builder builder()