Batch Get Standards Control Associations
| securityhub_batch_get_standards_control_associations | R Documentation | 
For a batch of security controls and standards, identifies whether each control is currently enabled or disabled in a standard¶
Description¶
For a batch of security controls and standards, identifies whether each control is currently enabled or disabled in a standard.
Calls to this operation return a RESOURCE_NOT_FOUND_EXCEPTION error
when the standard subscription for the association has a
NOT_READY_FOR_UPDATES value for StandardsControlsUpdatable.
Usage¶
securityhub_batch_get_standards_control_associations(
  StandardsControlAssociationIds)
Arguments¶
| StandardsControlAssociationIds | [required] An array with one or more objects that includes a
security control (identified with  | 
Value¶
A list with the following syntax:
list(
  StandardsControlAssociationDetails = list(
    list(
      StandardsArn = "string",
      SecurityControlId = "string",
      SecurityControlArn = "string",
      AssociationStatus = "ENABLED"|"DISABLED",
      RelatedRequirements = list(
        "string"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedReason = "string",
      StandardsControlTitle = "string",
      StandardsControlDescription = "string",
      StandardsControlArns = list(
        "string"
      )
    )
  ),
  UnprocessedAssociations = list(
    list(
      StandardsControlAssociationId = list(
        SecurityControlId = "string",
        StandardsArn = "string"
      ),
      ErrorCode = "INVALID_INPUT"|"ACCESS_DENIED"|"NOT_FOUND"|"LIMIT_EXCEEDED",
      ErrorReason = "string"
    )
  )
)
Request syntax¶
svc$batch_get_standards_control_associations(
  StandardsControlAssociationIds = list(
    list(
      SecurityControlId = "string",
      StandardsArn = "string"
    )
  )
)