Skip to content

Describe Organization Overview

devopsguru_describe_organization_overview R Documentation

Returns an overview of your organization's history based on the specified time range

Description

Returns an overview of your organization's history based on the specified time range. The overview includes the total reactive and proactive insights.

Usage

devopsguru_describe_organization_overview(FromTime, ToTime, AccountIds,
  OrganizationalUnitIds)

Arguments

FromTime

[required] The start of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred after this day.

ToTime

The end of the time range passed in. The start time granularity is at the day level. The floor of the start time is used. Returned information occurred before this day. If this is not specified, then the current day is used.

AccountIds

The ID of the Amazon Web Services account.

OrganizationalUnitIds

The ID of the organizational unit.

Value

A list with the following syntax:

list(
  ReactiveInsights = 123,
  ProactiveInsights = 123
)

Request syntax

svc$describe_organization_overview(
  FromTime = as.POSIXct(
    "2015-01-01"
  ),
  ToTime = as.POSIXct(
    "2015-01-01"
  ),
  AccountIds = list(
    "string"
  ),
  OrganizationalUnitIds = list(
    "string"
  )
)