List Operations
ssmsap_list_operations | R Documentation |
Lists the operations performed by AWS Systems Manager for SAP¶
Description¶
Lists the operations performed by AWS Systems Manager for SAP.
Usage¶
ssmsap_list_operations(ApplicationId, MaxResults, NextToken, Filters)
Arguments¶
ApplicationId |
[required] The ID of 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. If you do not specify a value for MaxResults, the request returns 50 items per page by default. |
NextToken |
The token for the next page of results. |
Filters |
The filters of an operation. |
Value¶
A list with the following syntax:
list(
Operations = list(
list(
Id = "string",
Type = "string",
Status = "INPROGRESS"|"SUCCESS"|"ERROR",
StatusMessage = "string",
Properties = list(
"string"
),
ResourceType = "string",
ResourceId = "string",
ResourceArn = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_operations(
ApplicationId = "string",
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Value = "string",
Operator = "Equals"|"GreaterThanOrEquals"|"LessThanOrEquals"
)
)
)