AWS SDK Version 3 for .NET
API Reference

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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SecurityHub.AmazonSecurityHubRequest
      Amazon.SecurityHub.Model.DescribeProductsRequest

Namespace: Amazon.SecurityHub.Model
Assembly: AWSSDK.SecurityHub.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeProductsRequest : AmazonSecurityHubRequest
         IAmazonWebServiceRequest

The DescribeProductsRequest type exposes the following members

Constructors

NameDescription
Public Method DescribeProductsRequest()

Properties

NameTypeDescription
Public Property MaxResults System.Int32

Gets and sets the property MaxResults.

The maximum number of results to return.

Public Property NextToken System.String

Gets and sets the property NextToken.

The token that is required for pagination. On your first call to the DescribeProducts operation, set the value of this parameter to NULL.

For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.

Public Property ProductArn System.String

Gets and sets the property ProductArn.

The ARN of the integration to return.

Examples

The following example returns details about AWS services and third-party products that Security Hub integrates with.

To get information about Security Hub integrations


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;

            

Version Information

.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