listAssessmentTemplates
inline suspend fun InspectorClient.listAssessmentTemplates(crossinline block: ListAssessmentTemplatesRequest.Builder.() -> Unit): ListAssessmentTemplatesResponse
Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets.
Samples
fun main() {
//sampleStart
// Lists the assessment templates that correspond to the assessment targets that are specified by the
// ARNs of the assessment targets.
val resp = inspectorClient.listAssessmentTemplates {
assessmentTargetArns = listOf<String>(
"arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
)
maxResults = 123
}
//sampleEnd
}