enableImportFindingsForProduct

Enables the integration of a partner product with Security Hub. Integrated products send findings to Security Hub.

When you enable a product integration, a permissions policy that grants permission for the product to send findings to Security Hub is applied.

Samples


fun main() { 
   //sampleStart 
   // The following example activates an integration between Security Hub and a third party partner
// product that sends findings to Security Hub.
val resp = securityHubClient.enableImportFindingsForProduct {
    productArn = "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon"
} 
   //sampleEnd
}