listInvestigations
abstract suspend fun listInvestigations(input: ListInvestigationsRequest): ListInvestigationsResponse
Investigation performed by an agent for a security incident...
Samples
fun main() {
//sampleStart
// Invoke ListInvestigations with feedback examples
val resp = securityIrClient.listInvestigations {
caseId = "8403556009"
maxResults = 10
}
//sampleEnd
}