Batch Update Standards Control Associations
| securityhub_batch_update_standards_control_associations | R Documentation | 
For a batch of security controls and standards, this operation updates the enablement status of a control in a standard¶
Description¶
For a batch of security controls and standards, this operation updates the enablement status of a control in a standard.
Usage¶
securityhub_batch_update_standards_control_associations(
  StandardsControlAssociationUpdates)
Arguments¶
| StandardsControlAssociationUpdates | [required] Updates the enablement status of a security control in a specified standard. Calls to this operation return a
 | 
Value¶
A list with the following syntax:
list(
  UnprocessedAssociationUpdates = list(
    list(
      StandardsControlAssociationUpdate = list(
        StandardsArn = "string",
        SecurityControlId = "string",
        AssociationStatus = "ENABLED"|"DISABLED",
        UpdatedReason = "string"
      ),
      ErrorCode = "INVALID_INPUT"|"ACCESS_DENIED"|"NOT_FOUND"|"LIMIT_EXCEEDED",
      ErrorReason = "string"
    )
  )
)
Request syntax¶
svc$batch_update_standards_control_associations(
  StandardsControlAssociationUpdates = list(
    list(
      StandardsArn = "string",
      SecurityControlId = "string",
      AssociationStatus = "ENABLED"|"DISABLED",
      UpdatedReason = "string"
    )
  )
)