List Applications
ssmsap_list_applications | R Documentation |
Lists all the applications registered with AWS Systems Manager for SAP¶
Description¶
Lists all the applications registered with AWS Systems Manager for SAP.
Usage¶
ssmsap_list_applications(NextToken, MaxResults, Filters)
Arguments¶
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. |
Filters |
The filter of name, value, and operator. |
Value¶
A list with the following syntax:
list(
Applications = list(
list(
Id = "string",
DiscoveryStatus = "SUCCESS"|"REGISTRATION_FAILED"|"REFRESH_FAILED"|"REGISTERING"|"DELETING",
Type = "HANA"|"SAP_ABAP",
Arn = "string",
Tags = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_applications(
NextToken = "string",
MaxResults = 123,
Filters = list(
list(
Name = "string",
Value = "string",
Operator = "Equals"|"GreaterThanOrEquals"|"LessThanOrEquals"
)
)
)