listAssessmentRunAgents
inline suspend fun InspectorClient.listAssessmentRunAgents(crossinline block: ListAssessmentRunAgentsRequest.Builder.() -> Unit): ListAssessmentRunAgentsResponse
Lists the agents of the assessment runs that are specified by the ARNs of the assessment runs.
Samples
fun main() {
//sampleStart
// Lists the agents of the assessment runs that are specified by the ARNs of the assessment runs.
val resp = inspectorClient.listAssessmentRunAgents {
assessmentRunArn = "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq/template/0-4r1V2mAw/run/0-MKkpXXPE"
maxResults = 123
}
//sampleEnd
}