List Components
ssmsap_list_components | R Documentation |
Lists all the components registered with AWS Systems Manager for SAP¶
Description¶
Lists all the components registered with AWS Systems Manager for SAP.
Usage¶
ssmsap_list_components(ApplicationId, NextToken, MaxResults)
Arguments¶
ApplicationId |
The ID of the application. |
NextToken |
The token for the next page of results. |
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. If you do not specify a value for MaxResults, the request returns 50 items per page by default. |
Value¶
A list with the following syntax:
list(
Components = list(
list(
ApplicationId = "string",
ComponentId = "string",
ComponentType = "HANA"|"HANA_NODE"|"ABAP"|"ASCS"|"DIALOG"|"WEBDISP"|"WD"|"ERS",
Tags = list(
"string"
),
Arn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_components(
ApplicationId = "string",
NextToken = "string",
MaxResults = 123
)