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.

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.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeProductsAsync.

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

Syntax

C#
public abstract DescribeProductsResponse DescribeProducts(
         DescribeProductsRequest request
)

Parameters

request
Type: Amazon.SecurityHub.Model.DescribeProductsRequest

Container for the necessary parameters to execute the DescribeProducts service method.

Return Value


The response from the DescribeProducts service method, as returned by SecurityHub.

Exceptions

ExceptionCondition
InternalException Internal server error.
InvalidAccessException The account doesn't have permission to perform this action.
InvalidInputException The request was rejected because you supplied an invalid or out-of-range value for an input parameter.
LimitExceededException The request was rejected because it attempted to create resources beyond the current Amazon Web Services account or throttling limits. The error code describes the limit exceeded.

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 Framework:
Supported in: 4.5 and newer, 3.5

See Also