Skip to content

Describe Standards

securityhub_describe_standards R Documentation

Returns a list of the available standards in Security Hub

Description

Returns a list of the available standards in Security Hub.

For each standard, the results include the standard ARN, the name, and a description.

Usage

securityhub_describe_standards(NextToken, MaxResults)

Arguments

NextToken

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

Value

A list with the following syntax:

list(
  Standards = list(
    list(
      StandardsArn = "string",
      Name = "string",
      Description = "string",
      EnabledByDefault = TRUE|FALSE,
      StandardsManagedBy = list(
        Company = "string",
        Product = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

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

Examples

## Not run: 
# The following example returns a list of available security standards in
# Security Hub.
svc$describe_standards()

## End(Not run)