AWSIoTMetricValue

Objective-C

@interface AWSIoTMetricValue

Swift

class AWSIoTMetricValue

The value to be compared with the metric.

  • If the comparisonOperator calls for a set of CIDRs, use this to specify that set to be compared with the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable cidrs;

    Swift

    var cidrs: [String]? { get set }
  • If the comparisonOperator calls for a numeric value, use this to specify that numeric value to be compared with the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable count;

    Swift

    var count: NSNumber? { get set }
  • The numeral value of a metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable number;

    Swift

    var number: NSNumber? { get set }
  • The numeral values of a metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSNumber *> *_Nullable numbers;

    Swift

    var numbers: [NSNumber]? { get set }
  • If the comparisonOperator calls for a set of ports, use this to specify that set to be compared with the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSNumber *> *_Nullable ports;

    Swift

    var ports: [NSNumber]? { get set }
  • The string values of a metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable strings;

    Swift

    var strings: [String]? { get set }