Interface EmrCreateCluster.CloudWatchAlarmDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmrCreateCluster.CloudWatchAlarmDefinitionProperty.Jsii$Proxy
- Enclosing class:
EmrCreateCluster
@Stability(Stable)
public static interface EmrCreateCluster.CloudWatchAlarmDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
The definition of a CloudWatch metric alarm, which determines when an automatic scaling activity is triggered.
When the defined alarm conditions are satisfied, scaling activity begins.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; import software.amazon.awscdk.services.stepfunctions.tasks.*; CloudWatchAlarmDefinitionProperty cloudWatchAlarmDefinitionProperty = CloudWatchAlarmDefinitionProperty.builder() .comparisonOperator(EmrCreateCluster.getCloudWatchAlarmComparisonOperator().GREATER_THAN_OR_EQUAL) .metricName("metricName") .period(Duration.minutes(30)) // the properties below are optional .dimensions(List.of(MetricDimensionProperty.builder() .key("key") .value("value") .build())) .evaluationPeriods(123) .namespace("namespace") .statistic(EmrCreateCluster.getCloudWatchAlarmStatistic().SAMPLE_COUNT) .threshold(123) .unit(EmrCreateCluster.getCloudWatchAlarmUnit().NONE) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmrCreateCluster.CloudWatchAlarmDefinitionProperty
static final class
An implementation forEmrCreateCluster.CloudWatchAlarmDefinitionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Determines how the metric specified by MetricName is compared to the value specified by Threshold.A CloudWatch metric dimension.default Number
The number of periods, in five-minute increments, during which the alarm condition must exist before the alarm triggers automatic scaling activity.The name of the CloudWatch metric that is watched to determine an alarm condition.default String
The namespace for the CloudWatch metric.The period, in seconds, over which the statistic is applied.The statistic to apply to the metric associated with the alarm.default Number
The value against which the specified statistic is compared.getUnit()
The unit of measure associated with the CloudWatch metric being watched.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparisonOperator
@Stability(Stable) @NotNull EmrCreateCluster.CloudWatchAlarmComparisonOperator getComparisonOperator()Determines how the metric specified by MetricName is compared to the value specified by Threshold. -
getMetricName
The name of the CloudWatch metric that is watched to determine an alarm condition. -
getPeriod
The period, in seconds, over which the statistic is applied.EMR CloudWatch metrics are emitted every five minutes (300 seconds), so if an EMR CloudWatch metric is specified, specify 300.
-
getDimensions
A CloudWatch metric dimension.Default: - No dimensions
-
getEvaluationPeriods
The number of periods, in five-minute increments, during which the alarm condition must exist before the alarm triggers automatic scaling activity.Default: 1
-
getNamespace
The namespace for the CloudWatch metric.Default: 'AWS/ElasticMapReduce'
-
getStatistic
The statistic to apply to the metric associated with the alarm.Default: CloudWatchAlarmStatistic.AVERAGE
-
getThreshold
The value against which the specified statistic is compared.Default: - None
-
getUnit
The unit of measure associated with the CloudWatch metric being watched.The value specified for Unit must correspond to the units specified in the CloudWatch metric.
Default: CloudWatchAlarmUnit.NONE
-
builder
-