Learn R Programming

paws.security.identity (version 0.1.12)

securityhub_batch_enable_standards: Enables the standards specified by the provided StandardsArn

Description

Enables the standards specified by the provided StandardsArn. To obtain the ARN for a standard, use the describe_standards operation.

For more information, see the Security Standards section of the AWS Security Hub User Guide.

Usage

securityhub_batch_enable_standards(StandardsSubscriptionRequests)

Value

A list with the following syntax:

list(
  StandardsSubscriptions = list(
    list(
      StandardsSubscriptionArn = "string",
      StandardsArn = "string",
      StandardsInput = list(
        "string"
      ),
      StandardsStatus = "PENDING"|"READY"|"FAILED"|"DELETING"|"INCOMPLETE"
    )
  )
)

Arguments

StandardsSubscriptionRequests

[required] The list of standards checks to enable.

Request syntax

svc$batch_enable_standards(
  StandardsSubscriptionRequests = list(
    list(
      StandardsArn = "string",
      StandardsInput = list(
        "string"
      )
    )
  )
)