Describe Products
| securityhub_describe_products | R Documentation |
Returns information about product integrations in Security Hub¶
Description¶
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 do not provide an integration ARN, then the results include all of the available product integrations.
Usage¶
Arguments¶
NextTokenThe token that is required for pagination. On your first call to the
describe_productsoperation, set the value of this parameter toNULL.For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
MaxResultsThe maximum number of results to return.
ProductArnThe ARN of the integration to return.
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"|"UPDATE_FINDINGS_IN_SECURITY_HUB"
),
MarketplaceUrl = "string",
ActivationUrl = "string",
ProductSubscriptionResourcePolicy = "string"
)
),
NextToken = "string"
)