List Sub Check Results
| ssmsap_list_sub_check_results | R Documentation |
Lists the sub-check results of a specified configuration check operation¶
Description¶
Lists the sub-check results of a specified configuration check operation.
Usage¶
ssmsap_list_sub_check_results(OperationId, MaxResults, NextToken)
Arguments¶
OperationId |
[required] The ID of the configuration check operation. |
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(
SubCheckResults = list(
list(
Id = "string",
Name = "string",
Description = "string",
References = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_sub_check_results(
OperationId = "string",
MaxResults = 123,
NextToken = "string"
)