@Stability(value=Stable)
public static interface CfnCampaign.MetricDimensionProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getComparisonOperator()
The operator to use when comparing metric values.
|
default Number |
getValue()
The value to compare.
|
@Stability(value=Stable) @Nullable default String getComparisonOperator()
Valid values are: GREATER_THAN , LESS_THAN , GREATER_THAN_OR_EQUAL , LESS_THAN_OR_EQUAL , and EQUAL .
@Stability(value=Stable) @Nullable default Number getValue()
@Stability(value=Stable) static CfnCampaign.MetricDimensionProperty.Builder builder()
Copyright © 2022. All rights reserved.