Description Usage Arguments Value Request syntax
View source: R/ssm_operations.R
Returns a list of all OpsItem events in the current AWS account and Region. You can limit the results to events associated with specific OpsItems by specifying a filter.
1 | ssm_list_ops_item_events(Filters, MaxResults, NextToken)
|
Filters |
One or more OpsItem filters. Use a filter to return a more specific list of results. |
MaxResults |
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results. |
NextToken |
A token to start the list. Use this token to get the next set of results. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | list(
NextToken = "string",
Summaries = list(
list(
OpsItemId = "string",
EventId = "string",
Source = "string",
DetailType = "string",
Detail = "string",
CreatedBy = list(
Arn = "string"
),
CreatedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.