Skip to content

List Events

devopsguru_list_events R Documentation

Returns a list of the events emitted by the resources that are evaluated by DevOps Guru

Description

Returns a list of the events emitted by the resources that are evaluated by DevOps Guru. You can use filters to specify which events are returned.

Usage

devopsguru_list_events(Filters, MaxResults, NextToken, AccountId)

Arguments

Filters

[required] A ListEventsFilters object used to specify which events to return.

MaxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

NextToken

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

AccountId

The ID of the Amazon Web Services account.

Value

A list with the following syntax:

list(
  Events = list(
    list(
      ResourceCollection = list(
        CloudFormation = list(
          StackNames = list(
            "string"
          )
        ),
        Tags = list(
          list(
            AppBoundaryKey = "string",
            TagValues = list(
              "string"
            )
          )
        )
      ),
      Id = "string",
      Time = as.POSIXct(
        "2015-01-01"
      ),
      EventSource = "string",
      Name = "string",
      DataSource = "AWS_CLOUD_TRAIL"|"AWS_CODE_DEPLOY",
      EventClass = "INFRASTRUCTURE"|"DEPLOYMENT"|"SECURITY_CHANGE"|"CONFIG_CHANGE"|"SCHEMA_CHANGE",
      Resources = list(
        list(
          Type = "string",
          Name = "string",
          Arn = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_events(
  Filters = list(
    InsightId = "string",
    EventTimeRange = list(
      FromTime = as.POSIXct(
        "2015-01-01"
      ),
      ToTime = as.POSIXct(
        "2015-01-01"
      )
    ),
    EventClass = "INFRASTRUCTURE"|"DEPLOYMENT"|"SECURITY_CHANGE"|"CONFIG_CHANGE"|"SCHEMA_CHANGE",
    EventSource = "string",
    DataSource = "AWS_CLOUD_TRAIL"|"AWS_CODE_DEPLOY",
    ResourceCollection = list(
      CloudFormation = list(
        StackNames = list(
          "string"
        )
      ),
      Tags = list(
        list(
          AppBoundaryKey = "string",
          TagValues = list(
            "string"
          )
        )
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string",
  AccountId = "string"
)