Skip to content

Get Metric Stream

cloudwatch_get_metric_stream R Documentation

Returns information about the metric stream that you specify

Description

Returns information about the metric stream that you specify.

Usage

cloudwatch_get_metric_stream(Name)

Arguments

Name

[required] The name of the metric stream to retrieve information about.

Value

A list with the following syntax:

list(
  Arn = "string",
  Name = "string",
  IncludeFilters = list(
    list(
      Namespace = "string",
      MetricNames = list(
        "string"
      )
    )
  ),
  ExcludeFilters = list(
    list(
      Namespace = "string",
      MetricNames = list(
        "string"
      )
    )
  ),
  FirehoseArn = "string",
  RoleArn = "string",
  State = "string",
  CreationDate = as.POSIXct(
    "2015-01-01"
  ),
  LastUpdateDate = as.POSIXct(
    "2015-01-01"
  ),
  OutputFormat = "json"|"opentelemetry0.7"|"opentelemetry1.0",
  StatisticsConfigurations = list(
    list(
      IncludeMetrics = list(
        list(
          Namespace = "string",
          MetricName = "string"
        )
      ),
      AdditionalStatistics = list(
        "string"
      )
    )
  ),
  IncludeLinkedAccountsMetrics = TRUE|FALSE
)

Request syntax

svc$get_metric_stream(
  Name = "string"
)