Retrieves a list of events that occurred during a specific time in a space
Source:R/codecatalyst_operations.R
codecatalyst_list_event_logs.RdRetrieves a list of events that occurred during a specific time in a space. You can use these events to audit user and system activity in a space. For more information, see Monitoring in the Amazon CodeCatalyst User Guide.
See https://www.paws-r-sdk.com/docs/codecatalyst_list_event_logs/ for full documentation.
Usage
codecatalyst_list_event_logs(
spaceName,
startTime,
endTime,
eventName = NULL,
nextToken = NULL,
maxResults = NULL
)Arguments
- spaceName
[required] The name of the space.
- startTime
[required] The date and time when you want to start retrieving events, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
- endTime
[required] The time after which you do not want any events retrieved, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
- eventName
The name of the event.
- nextToken
A token returned from a call to this API to indicate the next batch of results to return, if any.
- maxResults
The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a
NextTokenelement, which you can use to obtain additional results.