Describe Hub
| securityhub_describe_hub | R Documentation |
Returns details about the Hub resource in your account, including the HubArn and the time when you enabled Security Hub¶
Description¶
Returns details about the Hub resource in your account, including the
HubArn and the time when you enabled Security Hub.
Usage¶
Arguments¶
HubArnThe ARN of the Hub resource to retrieve.
Value¶
A list with the following syntax:
list(
HubArn = "string",
SubscribedAt = "string",
AutoEnableControls = TRUE|FALSE,
ControlFindingGenerator = "STANDARD_CONTROL"|"SECURITY_CONTROL"
)
Request syntax¶
Examples¶
## Not run:
# The following example returns details about the Hub resource in the
# calling account. The Hub resource represents the implementation of the
# AWS Security Hub service in the calling account.
svc$describe_hub(
HubArn = "arn:aws:securityhub:us-west-1:123456789012:hub/default"
)
## End(Not run)