Learn R Programming

paws.management (version 0.1.5)

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(Filters, Aggregators, NextToken, MaxResults)

Arguments

Filters

Optional filters used to scope down the returned OpsItems.

Aggregators

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

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(
  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()
    )
  ),
  NextToken = "string",
  MaxResults = 123
)