Skip to content

List Configuration Check Operations

ssmsap_list_configuration_check_operations R Documentation

Lists the configuration check operations performed by AWS Systems Manager for SAP

Description

Lists the configuration check operations performed by AWS Systems Manager for SAP.

Usage

ssmsap_list_configuration_check_operations(ApplicationId, ListMode,
  MaxResults, NextToken, Filters)

Arguments

ApplicationId

[required] The ID of the application.

ListMode

The mode for listing configuration check operations. Defaults to "LATEST_PER_CHECK".

  • LATEST_PER_CHECK - Will list the latest configuration check operation per check type.

  • ALL_OPERATIONS - Will list all configuration check operations performed on the application.

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 token for the next page of results.

Filters

The filters of an operation.

Value

A list with the following syntax:

list(
  ConfigurationCheckOperations = list(
    list(
      Id = "string",
      ApplicationId = "string",
      Status = "INPROGRESS"|"SUCCESS"|"ERROR",
      StatusMessage = "string",
      ConfigurationCheckId = "SAP_CHECK_01"|"SAP_CHECK_02"|"SAP_CHECK_03",
      ConfigurationCheckName = "string",
      ConfigurationCheckDescription = "string",
      StartTime = as.POSIXct(
        "2015-01-01"
      ),
      EndTime = as.POSIXct(
        "2015-01-01"
      ),
      RuleStatusCounts = list(
        Failed = 123,
        Warning = 123,
        Info = 123,
        Passed = 123,
        Unknown = 123
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_configuration_check_operations(
  ApplicationId = "string",
  ListMode = "ALL_OPERATIONS"|"LATEST_PER_CHECK",
  MaxResults = 123,
  NextToken = "string",
  Filters = list(
    list(
      Name = "string",
      Value = "string",
      Operator = "Equals"|"GreaterThanOrEquals"|"LessThanOrEquals"
    )
  )
)