Skip to content

Describe Products V2

securityhub_describe_products_v2 R Documentation

Gets information about the product integration

Description

Gets information about the product integration.

Usage

securityhub_describe_products_v2(NextToken, MaxResults)

Arguments

NextToken

The token required for pagination. On your first call, set the value of this parameter to NULL. For subsequent calls, to continue listing data, set the value of this parameter to the value returned in the previous response.

MaxResults

The maximum number of results to return.

Value

A list with the following syntax:

list(
  ProductsV2 = list(
    list(
      ProductV2Name = "string",
      CompanyName = "string",
      Description = "string",
      Categories = list(
        "string"
      ),
      IntegrationV2Types = list(
        "SEND_FINDINGS_TO_SECURITY_HUB"|"RECEIVE_FINDINGS_FROM_SECURITY_HUB"|"UPDATE_FINDINGS_IN_SECURITY_HUB"|"EXTENDED_PLAN"
      ),
      MarketplaceUrl = "string",
      ActivationUrl = "string",
      MarketplaceProductId = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_products_v2(
  NextToken = "string",
  MaxResults = 123
)