Skip to content

Describe Monitor

forecastservice_describe_monitor R Documentation

Describes a monitor resource

Description

Describes a monitor resource. In addition to listing the properties provided in the create_monitor request, this operation lists the following properties:

  • Baseline

  • CreationTime

  • LastEvaluationTime

  • LastEvaluationState

  • LastModificationTime

  • Message

  • Status

Usage

forecastservice_describe_monitor(MonitorArn)

Arguments

MonitorArn

[required] The Amazon Resource Name (ARN) of the monitor resource to describe.

Value

A list with the following syntax:

list(
  MonitorName = "string",
  MonitorArn = "string",
  ResourceArn = "string",
  Status = "string",
  LastEvaluationTime = as.POSIXct(
    "2015-01-01"
  ),
  LastEvaluationState = "string",
  Baseline = list(
    PredictorBaseline = list(
      BaselineMetrics = list(
        list(
          Name = "string",
          Value = 123.0
        )
      )
    )
  ),
  Message = "string",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModificationTime = as.POSIXct(
    "2015-01-01"
  ),
  EstimatedEvaluationTimeRemainingInMinutes = 123
)

Request syntax

svc$describe_monitor(
  MonitorArn = "string"
)