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¶
NextToken
The token that is required for pagination. On your first call to the
describe_products
operation, 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.
MaxResults
The maximum number of results to return.
ProductArn
The 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"
)