You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::Behavior

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Behavior as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "BehaviorName", # required
  metric: "BehaviorMetric",
  metric_dimension: {
    dimension_name: "DimensionName", # required
    operator: "IN", # accepts IN, NOT_IN
  },
  criteria: {
    comparison_operator: "less-than", # accepts less-than, less-than-equals, greater-than, greater-than-equals, in-cidr-set, not-in-cidr-set, in-port-set, not-in-port-set
    value: {
      count: 1,
      cidrs: ["Cidr"],
      ports: [1],
    },
    duration_seconds: 1,
    consecutive_datapoints_to_alarm: 1,
    consecutive_datapoints_to_clear: 1,
    statistical_threshold: {
      statistic: "EvaluationStatistic",
    },
  },
}

A Device Defender security profile behavior.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#criteriaTypes::BehaviorCriteria

The criteria that determine if a device is behaving normally in regard to the metric.

Returns:

  • (Types::BehaviorCriteria)

    The criteria that determine if a device is behaving normally in regard to the metric.

#metricString

What is measured by the behavior.

Returns:

  • (String)

    What is measured by the behavior.

#metric_dimensionTypes::MetricDimension

The dimension for a metric in your behavior. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric only to MQTT topics whose name match the pattern specified in the dimension.

Returns:

#nameString

The name you have given to the behavior.

Returns:

  • (String)

    The name you have given to the behavior.