Skip to content

Detect Metric Set Config

lookoutmetrics_detect_metric_set_config R Documentation

Detects an Amazon S3 dataset's file format, interval, and offset

Description

Detects an Amazon S3 dataset's file format, interval, and offset.

Usage

lookoutmetrics_detect_metric_set_config(AnomalyDetectorArn,
  AutoDetectionMetricSource)

Arguments

AnomalyDetectorArn

[required] An anomaly detector ARN.

AutoDetectionMetricSource

[required] A data source.

Value

A list with the following syntax:

list(
  DetectedMetricSetConfig = list(
    Offset = list(
      Value = list(
        S = "string",
        N = "string",
        B = "string",
        SS = list(
          "string"
        ),
        NS = list(
          "string"
        ),
        BS = list(
          "string"
        )
      ),
      Confidence = "HIGH"|"LOW"|"NONE",
      Message = "string"
    ),
    MetricSetFrequency = list(
      Value = list(
        S = "string",
        N = "string",
        B = "string",
        SS = list(
          "string"
        ),
        NS = list(
          "string"
        ),
        BS = list(
          "string"
        )
      ),
      Confidence = "HIGH"|"LOW"|"NONE",
      Message = "string"
    ),
    MetricSource = list(
      S3SourceConfig = list(
        FileFormatDescriptor = list(
          CsvFormatDescriptor = list(
            FileCompression = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            Charset = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            ContainsHeader = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            Delimiter = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            HeaderList = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            QuoteSymbol = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            )
          ),
          JsonFormatDescriptor = list(
            FileCompression = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            ),
            Charset = list(
              Value = list(
                S = "string",
                N = "string",
                B = "string",
                SS = list(
                  "string"
                ),
                NS = list(
                  "string"
                ),
                BS = list(
                  "string"
                )
              ),
              Confidence = "HIGH"|"LOW"|"NONE",
              Message = "string"
            )
          )
        )
      )
    )
  )
)

Request syntax

svc$detect_metric_set_config(
  AnomalyDetectorArn = "string",
  AutoDetectionMetricSource = list(
    S3SourceConfig = list(
      TemplatedPathList = list(
        "string"
      ),
      HistoricalDataPathList = list(
        "string"
      )
    )
  )
)