Learn R Programming

paws.management (version 0.1.6)

ssm_get_ops_summary: View a summary of OpsItems based on specified filters and aggregators

Description

View a summary of OpsItems based on specified filters and aggregators.

Usage

ssm_get_ops_summary(SyncName, Filters, Aggregators, ResultAttributes,
  NextToken, MaxResults)

Arguments

SyncName

Specify the name of a resource data sync to get.

Filters

Optional filters used to scope down the returned OpsItems.

Aggregators

Optional aggregators that return counts of OpsItems based on one or more expressions.

ResultAttributes

The OpsItem data type to return.

NextToken

A token to start the list. Use this token to get the next set of results.

MaxResults

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Request syntax

svc$get_ops_summary(
  SyncName = "string",
  Filters = list(
    list(
      Key = "string",
      Values = list(
        "string"
      ),
      Type = "Equal"|"NotEqual"|"BeginWith"|"LessThan"|"GreaterThan"|"Exists"
    )
  ),
  Aggregators = list(
    list(
      AggregatorType = "string",
      TypeName = "string",
      AttributeName = "string",
      Values = list(
        "string"
      ),
      Filters = list(
        list(
          Key = "string",
          Values = list(
            "string"
          ),
          Type = "Equal"|"NotEqual"|"BeginWith"|"LessThan"|"GreaterThan"|"Exists"
        )
      ),
      Aggregators = list()
    )
  ),
  ResultAttributes = list(
    list(
      TypeName = "string"
    )
  ),
  NextToken = "string",
  MaxResults = 123
)