Skip to content

List Configuration Check Definitions

ssmsap_list_configuration_check_definitions R Documentation

Lists all configuration check types supported by AWS Systems Manager for SAP

Description

Lists all configuration check types supported by AWS Systems Manager for SAP.

Usage

ssmsap_list_configuration_check_definitions(MaxResults, NextToken)

Arguments

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.

Value

A list with the following syntax:

list(
  ConfigurationChecks = list(
    list(
      Id = "SAP_CHECK_01"|"SAP_CHECK_02"|"SAP_CHECK_03",
      Name = "string",
      Description = "string",
      ApplicableApplicationTypes = list(
        "HANA"|"SAP_ABAP"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_configuration_check_definitions(
  MaxResults = 123,
  NextToken = "string"
)