Interface CfnCampaign.MetricDimensionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.MetricDimensionProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.MetricDimensionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies metric-based criteria for including or excluding endpoints from a segment.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.MetricDimensionProperty
static final class
An implementation forCfnCampaign.MetricDimensionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparisonOperator
The operator to use when comparing metric values.Valid values are:
GREATER_THAN
,LESS_THAN
,GREATER_THAN_OR_EQUAL
,LESS_THAN_OR_EQUAL
, andEQUAL
. -
getValue
The value to compare. -
builder
-