Learn R Programming

paws.security.identity (version 0.1.12)

securityhub_describe_products: Returns information about the available products that you can subscribe to and integrate with Security Hub in order to consolidate findings

Description

Returns information about the available products that you can subscribe to and integrate with Security Hub in order to consolidate findings.

Usage

securityhub_describe_products(NextToken, MaxResults)

Value

A list with the following syntax:

list(
  Products = list(
    list(
      ProductArn = "string",
      ProductName = "string",
      CompanyName = "string",
      Description = "string",
      Categories = list(
        "string"
      ),
      IntegrationTypes = list(
        "SEND_FINDINGS_TO_SECURITY_HUB"|"RECEIVE_FINDINGS_FROM_SECURITY_HUB"
      ),
      MarketplaceUrl = "string",
      ActivationUrl = "string",
      ProductSubscriptionResourcePolicy = "string"
    )
  ),
  NextToken = "string"
)

Arguments

NextToken

The token that is required for pagination. On your first call to the describe_products 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.

MaxResults

The maximum number of results to return.

Request syntax

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