AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the DescribeProducts operation. 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.
Namespace: Amazon.SecurityHub.Model
Assembly: AWSSDK.SecurityHub.dll
Version: 3.x.y.z
public class DescribeProductsRequest : AmazonSecurityHubRequest IAmazonWebServiceRequest
The DescribeProductsRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
DescribeProductsRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
MaxResults | System.Int32 |
Gets and sets the property MaxResults. The maximum number of results to return. |
![]() |
NextToken | System.String |
Gets and sets the property NextToken.
The token that is required for pagination. On your first call to the For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response. |
![]() |
ProductArn | System.String |
Gets and sets the property ProductArn. The ARN of the integration to return. |
The following example returns details about AWS services and third-party products that Security Hub integrates with.
var client = new AmazonSecurityHubClient(); var response = client.DescribeProducts(new DescribeProductsRequest { MaxResults = 1, NextToken = "NULL", ProductArn = "arn:aws:securityhub:us-east-1:517716713836:product/crowdstrike/crowdstrike-falcon" }); string nextToken = response.NextToken; List<Product> products = response.Products;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5