listEnabledProductsForImport
inline suspend fun SecurityHubClient.listEnabledProductsForImport(crossinline block: ListEnabledProductsForImportRequest.Builder.() -> Unit): ListEnabledProductsForImportResponse
Lists all findings-generating solutions (products) that you are subscribed to receive findings from in Security Hub.
Samples
fun main() {
//sampleStart
// The following example returns a list of subscription Amazon Resource Names (ARNs) for the product
// integrations that you have currently enabled in Security Hub.
val resp = securityHubClient.listEnabledProductsForImport()
//sampleEnd
}