pub struct Client { /* private fields */ }
Expand description

Client for Amazon CloudWatch

Client for invoking operations on Amazon CloudWatch. Each operation on Amazon CloudWatch is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

Examples

Constructing a client and invoking an operation

    // create a shared configuration. This can be used & shared between multiple service clients.
    let shared_config = aws_config::load_from_env().await;
    let client = aws_sdk_cloudwatch::Client::new(&shared_config);
    // invoke an operation
    /* let rsp = client
        .<operation_name>().
        .<param>("some value")
        .send().await; */

Constructing a client with custom configuration

use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_cloudwatch::config::Builder::from(&shared_config)
  .retry_config(RetryConfig::disabled())
  .build();
let client = aws_sdk_cloudwatch::Client::from_conf(config);

Implementations

Creates a client with the given service configuration.

Returns the client’s configuration.

Constructs a fluent builder for the DeleteAlarms operation.

Constructs a fluent builder for the DeleteAnomalyDetector operation.

Constructs a fluent builder for the DeleteDashboards operation.

Constructs a fluent builder for the DeleteInsightRules operation.

Constructs a fluent builder for the DeleteMetricStream operation.

Constructs a fluent builder for the DescribeAlarmHistory operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the DescribeAlarms operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the DescribeAlarmsForMetric operation.

Constructs a fluent builder for the DescribeAnomalyDetectors operation.

Constructs a fluent builder for the DescribeInsightRules operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the DisableAlarmActions operation.

Constructs a fluent builder for the DisableInsightRules operation.

Constructs a fluent builder for the EnableAlarmActions operation.

Constructs a fluent builder for the EnableInsightRules operation.

Constructs a fluent builder for the GetDashboard operation.

Constructs a fluent builder for the GetInsightRuleReport operation.

  • The fluent builder is configurable:
    • rule_name(impl Into<String>) / set_rule_name(Option<String>):

      The name of the rule that you want to see data from.

    • start_time(DateTime) / set_start_time(Option<DateTime>):

      The start time of the data to use in the report. When used in a raw HTTP Query API, it is formatted as yyyy-MM-dd’T’HH:mm:ss. For example, 2019-07-01T23:59:59.

    • end_time(DateTime) / set_end_time(Option<DateTime>):

      The end time of the data to use in the report. When used in a raw HTTP Query API, it is formatted as yyyy-MM-dd’T’HH:mm:ss. For example, 2019-07-01T23:59:59.

    • period(i32) / set_period(Option<i32>):

      The period, in seconds, to use for the statistics in the InsightRuleMetricDatapoint results.

    • max_contributor_count(i32) / set_max_contributor_count(Option<i32>):

      The maximum number of contributors to include in the report. The range is 1 to 100. If you omit this, the default of 10 is used.

    • metrics(Vec<String>) / set_metrics(Option<Vec<String>>):

      Specifies which metrics to use for aggregation of contributor values for the report. You can specify one or more of the following metrics:

      • UniqueContributors – the number of unique contributors for each data point.

      • MaxContributorValue – the value of the top contributor for each data point. The identity of the contributor might change for each data point in the graph.

        If this rule aggregates by COUNT, the top contributor for each data point is the contributor with the most occurrences in that period. If the rule aggregates by SUM, the top contributor is the contributor with the highest sum in the log field specified by the rule’s Value, during that period.

      • SampleCount – the number of data points matched by the rule.

      • Sum – the sum of the values from all contributors during the time period represented by that data point.

      • Minimum – the minimum value from a single observation during the time period represented by that data point.

      • Maximum – the maximum value from a single observation during the time period represented by that data point.

      • Average – the average value from all contributors during the time period represented by that data point.

    • order_by(impl Into<String>) / set_order_by(Option<String>):

      Determines what statistic to use to rank the contributors. Valid values are SUM and MAXIMUM.

  • On success, responds with GetInsightRuleReportOutput with field(s):
  • On failure, responds with SdkError<GetInsightRuleReportError>

Constructs a fluent builder for the GetMetricData operation. This operation supports pagination; See into_paginator().

  • The fluent builder is configurable:
    • metric_data_queries(Vec<MetricDataQuery>) / set_metric_data_queries(Option<Vec<MetricDataQuery>>):

      The metric queries to be returned. A single GetMetricData call can include as many as 500 MetricDataQuery structures. Each of these structures can specify either a metric to retrieve, a Metrics Insights query, or a math expression to perform on retrieved data.

    • start_time(DateTime) / set_start_time(Option<DateTime>):

      The time stamp indicating the earliest data to be returned.

      The value specified is inclusive; results include data points with the specified time stamp.

      CloudWatch rounds the specified time stamp as follows:

      • Start time less than 15 days ago - Round down to the nearest whole minute. For example, 12:32:34 is rounded down to 12:32:00.

      • Start time between 15 and 63 days ago - Round down to the nearest 5-minute clock interval. For example, 12:32:34 is rounded down to 12:30:00.

      • Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is rounded down to 12:00:00.

      If you set Period to 5, 10, or 30, the start time of your request is rounded down to the nearest time that corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5 seconds, you receive data timestamped between 15:02:15 and 15:07:15.

      For better performance, specify StartTime and EndTime values that align with the value of the metric’s Period and sync up with the beginning and end of an hour. For example, if the Period of a metric is 5 minutes, specifying 12:05 or 12:30 as StartTime can get a faster response from CloudWatch than setting 12:07 or 12:29 as the StartTime.

    • end_time(DateTime) / set_end_time(Option<DateTime>):

      The time stamp indicating the latest data to be returned.

      The value specified is exclusive; results include data points up to the specified time stamp.

      For better performance, specify StartTime and EndTime values that align with the value of the metric’s Period and sync up with the beginning and end of an hour. For example, if the Period of a metric is 5 minutes, specifying 12:05 or 12:30 as EndTime can get a faster response from CloudWatch than setting 12:07 or 12:29 as the EndTime.

    • next_token(impl Into<String>) / set_next_token(Option<String>):

      Include this value, if it was returned by the previous GetMetricData operation, to get the next set of data points.

    • scan_by(ScanBy) / set_scan_by(Option<ScanBy>):

      The order in which data points should be returned. TimestampDescending returns the newest data first and paginates when the MaxDatapoints limit is reached. TimestampAscending returns the oldest data first and paginates when the MaxDatapoints limit is reached.

    • max_datapoints(i32) / set_max_datapoints(Option<i32>):

      The maximum number of data points the request should return before paginating. If you omit this, the default of 100,800 is used.

    • label_options(LabelOptions) / set_label_options(Option<LabelOptions>):

      This structure includes the Timezone parameter, which you can use to specify your time zone so that the labels of returned data display the correct time for your time zone.

  • On success, responds with GetMetricDataOutput with field(s):
    • metric_data_results(Option<Vec<MetricDataResult>>):

      The metrics that are returned, including the metric name, namespace, and dimensions.

    • next_token(Option<String>):

      A token that marks the next batch of returned results.

    • messages(Option<Vec<MessageData>>):

      Contains a message about this GetMetricData operation, if the operation results in such a message. An example of a message that might be returned is Maximum number of allowed metrics exceeded. If there is a message, as much of the operation as possible is still executed.

      A message appears here only if it is related to the global GetMetricData operation. Any message about a specific metric returned by the operation appears in the MetricDataResult object returned for that metric.

  • On failure, responds with SdkError<GetMetricDataError>

Constructs a fluent builder for the GetMetricStatistics operation.

  • The fluent builder is configurable:
    • namespace(impl Into<String>) / set_namespace(Option<String>):

      The namespace of the metric, with or without spaces.

    • metric_name(impl Into<String>) / set_metric_name(Option<String>):

      The name of the metric, with or without spaces.

    • dimensions(Vec<Dimension>) / set_dimensions(Option<Vec<Dimension>>):

      The dimensions. If the metric contains multiple dimensions, you must include a value for each dimension. CloudWatch treats each unique combination of dimensions as a separate metric. If a specific combination of dimensions was not published, you can’t retrieve statistics for it. You must specify the same dimensions that were used when the metrics were created. For an example, see Dimension Combinations in the Amazon CloudWatch User Guide. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

    • start_time(DateTime) / set_start_time(Option<DateTime>):

      The time stamp that determines the first data point to return. Start times are evaluated relative to the time that CloudWatch receives the request.

      The value specified is inclusive; results include data points with the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-03T23:00:00Z).

      CloudWatch rounds the specified time stamp as follows:

      • Start time less than 15 days ago - Round down to the nearest whole minute. For example, 12:32:34 is rounded down to 12:32:00.

      • Start time between 15 and 63 days ago - Round down to the nearest 5-minute clock interval. For example, 12:32:34 is rounded down to 12:30:00.

      • Start time greater than 63 days ago - Round down to the nearest 1-hour clock interval. For example, 12:32:34 is rounded down to 12:00:00.

      If you set Period to 5, 10, or 30, the start time of your request is rounded down to the nearest time that corresponds to even 5-, 10-, or 30-second divisions of a minute. For example, if you make a query at (HH:mm:ss) 01:05:23 for the previous 10-second period, the start time of your request is rounded down and you receive data from 01:05:10 to 01:05:20. If you make a query at 15:07:17 for the previous 5 minutes of data, using a period of 5 seconds, you receive data timestamped between 15:02:15 and 15:07:15.

    • end_time(DateTime) / set_end_time(Option<DateTime>):

      The time stamp that determines the last data point to return.

      The value specified is exclusive; results include data points up to the specified time stamp. In a raw HTTP query, the time stamp must be in ISO 8601 UTC format (for example, 2016-10-10T23:00:00Z).

    • period(i32) / set_period(Option<i32>):

      The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a PutMetricData call that includes a StorageResolution of 1 second.

      If the StartTime parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as follows or no data points in that time range is returned:

      • Start time between 3 hours and 15 days ago - Use a multiple of 60 seconds (1 minute).

      • Start time between 15 and 63 days ago - Use a multiple of 300 seconds (5 minutes).

      • Start time greater than 63 days ago - Use a multiple of 3600 seconds (1 hour).

    • statistics(Vec<Statistic>) / set_statistics(Option<Vec<Statistic>>):

      The metric statistics, other than percentile. For percentile statistics, use ExtendedStatistics. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both.

    • extended_statistics(Vec<String>) / set_extended_statistics(Option<Vec<String>>):

      The percentile statistics. Specify values between p0.0 and p100. When calling GetMetricStatistics, you must specify either Statistics or ExtendedStatistics, but not both. Percentile statistics are not available for metrics when any of the metric values are negative numbers.

    • unit(StandardUnit) / set_unit(Option<StandardUnit>):

      The unit for a given metric. If you omit Unit, all data that was collected with any unit is returned, along with the corresponding units that were specified when the data was reported to CloudWatch. If you specify a unit, the operation returns only data that was collected with that unit specified. If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.

  • On success, responds with GetMetricStatisticsOutput with field(s):
  • On failure, responds with SdkError<GetMetricStatisticsError>

Constructs a fluent builder for the GetMetricStream operation.

Constructs a fluent builder for the GetMetricWidgetImage operation.

  • The fluent builder is configurable:
    • metric_widget(impl Into<String>) / set_metric_widget(Option<String>):

      A JSON string that defines the bitmap graph to be retrieved. The string includes the metrics to include in the graph, statistics, annotations, title, axis limits, and so on. You can include only one MetricWidget parameter in each GetMetricWidgetImage call.

      For more information about the syntax of MetricWidget see GetMetricWidgetImage: Metric Widget Structure and Syntax.

      If any metric on the graph could not load all the requested data points, an orange triangle with an exclamation point appears next to the graph legend.

    • output_format(impl Into<String>) / set_output_format(Option<String>):

      The format of the resulting image. Only PNG images are supported.

      The default is png. If you specify png, the API returns an HTTP response with the content-type set to text/xml. The image data is in a MetricWidgetImage field. For example:

      >

      iVBORw0KGgoAAAANSUhEUgAAAlgAAAGQEAYAAAAip…

      6f0d4192-4d42-11e8-82c1-f539a07e0e3b

      The image/png setting is intended only for custom HTTP requests. For most use cases, and all actions using an Amazon Web Services SDK, you should use png. If you specify image/png, the HTTP response has a content-type set to image/png, and the body of the response is a PNG image.

  • On success, responds with GetMetricWidgetImageOutput with field(s):
  • On failure, responds with SdkError<GetMetricWidgetImageError>

Constructs a fluent builder for the ListDashboards operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListMetrics operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListMetricStreams operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListTagsForResource operation.

Constructs a fluent builder for the PutAnomalyDetector operation.

Constructs a fluent builder for the PutCompositeAlarm operation.

  • The fluent builder is configurable:
    • actions_enabled(bool) / set_actions_enabled(Option<bool>):

      Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. The default is TRUE.

    • alarm_actions(Vec<String>) / set_alarm_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:sns:region:account-id:sns-topic-name | arn:aws:ssm:region:account-id:opsitem:severity

    • alarm_description(impl Into<String>) / set_alarm_description(Option<String>):

      The description for the composite alarm.

    • alarm_name(impl Into<String>) / set_alarm_name(Option<String>):

      The name for the composite alarm. This name must be unique within the Region.

    • alarm_rule(impl Into<String>) / set_alarm_rule(Option<String>):

      An expression that specifies which other alarms are to be evaluated to determine this composite alarm’s state. For each alarm that you reference, you designate a function that specifies whether that alarm needs to be in ALARM state, OK state, or INSUFFICIENT_DATA state. You can use operators (AND, OR and NOT) to combine multiple functions in a single expression. You can use parenthesis to logically group the functions in your expression.

      You can use either alarm names or ARNs to reference the other alarms that are to be evaluated.

      Functions can include the following:

      • ALARM(“alarm-name or alarm-ARN”) is TRUE if the named alarm is in ALARM state.

      • OK(“alarm-name or alarm-ARN”) is TRUE if the named alarm is in OK state.

      • INSUFFICIENT_DATA(“alarm-name or alarm-ARN”) is TRUE if the named alarm is in INSUFFICIENT_DATA state.

      • TRUE always evaluates to TRUE.

      • FALSE always evaluates to FALSE.

      TRUE and FALSE are useful for testing a complex AlarmRule structure, and for testing your alarm actions.

      Alarm names specified in AlarmRule can be surrounded with double-quotes (“), but do not have to be.

      The following are some examples of AlarmRule:

      • ALARM(CPUUtilizationTooHigh) AND ALARM(DiskReadOpsTooHigh) specifies that the composite alarm goes into ALARM state only if both CPUUtilizationTooHigh and DiskReadOpsTooHigh alarms are in ALARM state.

      • ALARM(CPUUtilizationTooHigh) AND NOT ALARM(DeploymentInProgress) specifies that the alarm goes to ALARM state if CPUUtilizationTooHigh is in ALARM state and DeploymentInProgress is not in ALARM state. This example reduces alarm noise during a known deployment window.

      • (ALARM(CPUUtilizationTooHigh) OR ALARM(DiskReadOpsTooHigh)) AND OK(NetworkOutTooHigh) goes into ALARM state if CPUUtilizationTooHigh OR DiskReadOpsTooHigh is in ALARM state, and if NetworkOutTooHigh is in OK state. This provides another example of using a composite alarm to prevent noise. This rule ensures that you are not notified with an alarm action on high CPU or disk usage if a known network problem is also occurring.

      The AlarmRule can specify as many as 100 “children” alarms. The AlarmRule expression can have as many as 500 elements. Elements are child alarms, TRUE or FALSE statements, and parentheses.

    • insufficient_data_actions(Vec<String>) / set_insufficient_data_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:sns:region:account-id:sns-topic-name

    • ok_actions(Vec<String>) / set_ok_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:sns:region:account-id:sns-topic-name

    • tags(Vec<Tag>) / set_tags(Option<Vec<Tag>>):

      A list of key-value pairs to associate with the composite alarm. You can associate as many as 50 tags with an alarm.

      Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.

  • On success, responds with PutCompositeAlarmOutput
  • On failure, responds with SdkError<PutCompositeAlarmError>

Constructs a fluent builder for the PutDashboard operation.

Constructs a fluent builder for the PutInsightRule operation.

Constructs a fluent builder for the PutMetricAlarm operation.

  • The fluent builder is configurable:
    • alarm_name(impl Into<String>) / set_alarm_name(Option<String>):

      The name for the alarm. This name must be unique within the Region.

    • alarm_description(impl Into<String>) / set_alarm_description(Option<String>):

      The description for the alarm.

    • actions_enabled(bool) / set_actions_enabled(Option<bool>):

      Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.

    • ok_actions(Vec<String>) / set_ok_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:automate:region:ec2:stop | arn:aws:automate:region:ec2:terminate | arn:aws:automate:region:ec2:recover | arn:aws:automate:region:ec2:reboot | arn:aws:sns:region:account-id:sns-topic-name | arn:aws:autoscaling:region:account-id:scalingPolicy:policy-id:autoScalingGroupName/group-friendly-name:policyName/policy-friendly-name

      Valid Values (for use with IAM roles): arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Stop/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Terminate/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Reboot/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Recover/1.0

    • alarm_actions(Vec<String>) / set_alarm_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:automate:region:ec2:stop | arn:aws:automate:region:ec2:terminate | arn:aws:automate:region:ec2:recover | arn:aws:automate:region:ec2:reboot | arn:aws:sns:region:account-id:sns-topic-name | arn:aws:autoscaling:region:account-id:scalingPolicy:policy-id:autoScalingGroupName/group-friendly-name:policyName/policy-friendly-name | arn:aws:ssm:region:account-id:opsitem:severity | arn:aws:ssm-incidents::account-id:response-plan:response-plan-name

      Valid Values (for use with IAM roles): arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Stop/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Terminate/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Reboot/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Recover/1.0

    • insufficient_data_actions(Vec<String>) / set_insufficient_data_actions(Option<Vec<String>>):

      The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an Amazon Resource Name (ARN).

      Valid Values: arn:aws:automate:region:ec2:stop | arn:aws:automate:region:ec2:terminate | arn:aws:automate:region:ec2:recover | arn:aws:automate:region:ec2:reboot | arn:aws:sns:region:account-id:sns-topic-name | arn:aws:autoscaling:region:account-id:scalingPolicy:policy-id:autoScalingGroupName/group-friendly-name:policyName/policy-friendly-name

      Valid Values (for use with IAM roles): >arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Stop/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Terminate/1.0 | arn:aws:swf:region:account-id:action/actions/AWS_EC2.InstanceId.Reboot/1.0

    • metric_name(impl Into<String>) / set_metric_name(Option<String>):

      The name for the metric associated with the alarm. For each PutMetricAlarm operation, you must specify either MetricName or a Metrics array.

      If you are creating an alarm based on a math expression, you cannot specify this parameter, or any of the Dimensions, Period, Namespace, Statistic, or ExtendedStatistic parameters. Instead, you specify all this information in the Metrics array.

    • namespace(impl Into<String>) / set_namespace(Option<String>):

      The namespace for the metric associated specified in MetricName.

    • statistic(Statistic) / set_statistic(Option<Statistic>):

      The statistic for the metric specified in MetricName, other than percentile. For percentile statistics, use ExtendedStatistic. When you call PutMetricAlarm and specify a MetricName, you must specify either Statistic or ExtendedStatistic, but not both.

    • extended_statistic(impl Into<String>) / set_extended_statistic(Option<String>):

      The percentile statistic for the metric specified in MetricName. Specify a value between p0.0 and p100. When you call PutMetricAlarm and specify a MetricName, you must specify either Statistic or ExtendedStatistic, but not both.

    • dimensions(Vec<Dimension>) / set_dimensions(Option<Vec<Dimension>>):

      The dimensions for the metric specified in MetricName.

    • period(i32) / set_period(Option<i32>):

      The length, in seconds, used each time the metric specified in MetricName is evaluated. Valid values are 10, 30, and any multiple of 60.

      Period is required for alarms based on static thresholds. If you are creating an alarm based on a metric math expression, you specify the period for each metric within the objects in the Metrics array.

      Be sure to specify 10 or 30 only for metrics that are stored by a PutMetricData call with a StorageResolution of 1. If you specify a period of 10 or 30 for a metric that does not have sub-minute resolution, the alarm still attempts to gather data at the period rate that you specify. In this case, it does not receive data for the attempts that do not correspond to a one-minute data resolution, and the alarm might often lapse into INSUFFICENT_DATA status. Specifying 10 or 30 also sets this alarm as a high-resolution alarm, which has a higher charge than other alarms. For more information about pricing, see Amazon CloudWatch Pricing.

      An alarm’s total current evaluation period can be no longer than one day, so Period multiplied by EvaluationPeriods cannot be more than 86,400 seconds.

    • unit(StandardUnit) / set_unit(Option<StandardUnit>):

      The unit of measure for the statistic. For example, the units for the Amazon EC2 NetworkIn metric are Bytes because NetworkIn tracks the number of bytes that an instance receives on all network interfaces. You can also specify a unit when you create a custom metric. Units help provide conceptual meaning to your data. Metric data points that specify a unit of measure, such as Percent, are aggregated separately.

      If you don’t specify Unit, CloudWatch retrieves all unit types that have been published for the metric and attempts to evaluate the alarm. Usually, metrics are published with only one unit, so the alarm works as intended.

      However, if the metric is published with multiple types of units and you don’t specify a unit, the alarm’s behavior is not defined and it behaves predictably.

      We recommend omitting Unit so that you don’t inadvertently specify an incorrect unit that is not published for this metric. Doing so causes the alarm to be stuck in the INSUFFICIENT DATA state.

    • evaluation_periods(i32) / set_evaluation_periods(Option<i32>):

      The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an “M out of N” alarm, this value is the N.

      An alarm’s total current evaluation period can be no longer than one day, so this number multiplied by Period cannot be more than 86,400 seconds.

    • datapoints_to_alarm(i32) / set_datapoints_to_alarm(Option<i32>):

      The number of data points that must be breaching to trigger the alarm. This is used only if you are setting an “M out of N” alarm. In that case, this value is the M. For more information, see Evaluating an Alarm in the Amazon CloudWatch User Guide.

    • threshold(f64) / set_threshold(Option<f64>):

      The value against which the specified statistic is compared.

      This parameter is required for alarms based on static thresholds, but should not be used for alarms based on anomaly detection models.

    • comparison_operator(ComparisonOperator) / set_comparison_operator(Option<ComparisonOperator>):

      The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand.

      The values LessThanLowerOrGreaterThanUpperThreshold, LessThanLowerThreshold, and GreaterThanUpperThreshold are used only for alarms based on anomaly detection models.

    • treat_missing_data(impl Into<String>) / set_treat_missing_data(Option<String>):

      Sets how this alarm is to handle missing data points. If TreatMissingData is omitted, the default behavior of missing is used. For more information, see Configuring How CloudWatch Alarms Treats Missing Data.

      Valid Values: breaching | notBreaching | ignore | missing

      Alarms that evaluate metrics in the AWS/DynamoDB namespace always ignore missing data even if you choose a different option for TreatMissingData. When an AWS/DynamoDB metric has missing data, alarms that evaluate that metric remain in their current state.

    • evaluate_low_sample_count_percentile(impl Into<String>) / set_evaluate_low_sample_count_percentile(Option<String>):

      Used only for alarms based on percentiles. If you specify ignore, the alarm state does not change during periods with too few data points to be statistically significant. If you specify evaluate or omit this parameter, the alarm is always evaluated and possibly changes state no matter how many data points are available. For more information, see Percentile-Based CloudWatch Alarms and Low Data Samples.

      Valid Values: evaluate | ignore

    • metrics(Vec<MetricDataQuery>) / set_metrics(Option<Vec<MetricDataQuery>>):

      An array of MetricDataQuery structures that enable you to create an alarm based on the result of a metric math expression. For each PutMetricAlarm operation, you must specify either MetricName or a Metrics array.

      Each item in the Metrics array either retrieves a metric or performs a math expression.

      One item in the Metrics array is the expression that the alarm watches. You designate this expression by setting ReturnData to true for this object in the array. For more information, see MetricDataQuery.

      If you use the Metrics parameter, you cannot include the MetricName, Dimensions, Period, Namespace, Statistic, or ExtendedStatistic parameters of PutMetricAlarm in the same operation. Instead, you retrieve the metrics you are using in your math expression as part of the Metrics array.

    • tags(Vec<Tag>) / set_tags(Option<Vec<Tag>>):

      A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm.

      Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.

      If you are using this operation to update an existing alarm, any tags you specify in this parameter are ignored. To change the tags of an existing alarm, use TagResource or UntagResource.

    • threshold_metric_id(impl Into<String>) / set_threshold_metric_id(Option<String>):

      If this is an alarm based on an anomaly detection model, make this value match the ID of the ANOMALY_DETECTION_BAND function.

      For an example of how to use this parameter, see the Anomaly Detection Model Alarm example on this page.

      If your alarm uses this parameter, it cannot have Auto Scaling actions.

  • On success, responds with PutMetricAlarmOutput
  • On failure, responds with SdkError<PutMetricAlarmError>

Constructs a fluent builder for the PutMetricData operation.

Constructs a fluent builder for the PutMetricStream operation.

Constructs a fluent builder for the SetAlarmState operation.

Constructs a fluent builder for the StartMetricStreams operation.

Constructs a fluent builder for the StopMetricStreams operation.

Constructs a fluent builder for the TagResource operation.

Constructs a fluent builder for the UntagResource operation.

Creates a client with the given service config and connector override.

Creates a new client from a shared config.

Creates a new client from the service Config.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more