Class: Aws::PrometheusService::Types::AnomalyDetectorConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb

Overview

Note:

AnomalyDetectorConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

AnomalyDetectorConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AnomalyDetectorConfiguration corresponding to the set member.

The configuration for the anomaly detection algorithm.

Direct Known Subclasses

RandomCutForest, Unknown

Defined Under Namespace

Classes: RandomCutForest, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#random_cut_forestTypes::RandomCutForestConfiguration

The Random Cut Forest algorithm configuration for anomaly detection.



113
114
115
116
117
118
119
120
121
122
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 113

class AnomalyDetectorConfiguration < Struct.new(
  :random_cut_forest,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RandomCutForest < AnomalyDetectorConfiguration; end
  class Unknown < AnomalyDetectorConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



113
114
115
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 113

def unknown
  @unknown
end