describeProducts

abstract suspend fun describeProducts(input: DescribeProductsRequest = DescribeProductsRequest { }): DescribeProductsResponse

Returns information about product integrations in Security Hub.

You can optionally provide an integration ARN. If you provide an integration ARN, then the results only include that integration.

If you don't provide an integration ARN, then the results include all of the available product integrations.

Samples


fun main() { 
   //sampleStart 
   // The following example returns details about AWS services and third party products that Security Hub
// integrates with.
val resp = securityHubClient.describeProducts {
    nextToken = "NULL"
    maxResults = 1
    productArn = "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon"
} 
   //sampleEnd
}