Skip to content

Get Assessment Framework

auditmanager_get_assessment_framework R Documentation

Gets information about a specified framework

Description

Gets information about a specified framework.

Usage

auditmanager_get_assessment_framework(frameworkId)

Arguments

frameworkId

[required] The identifier for the framework.

Value

A list with the following syntax:

list(
  framework = list(
    arn = "string",
    id = "string",
    name = "string",
    type = "Standard"|"Custom",
    complianceType = "string",
    description = "string",
    logo = "string",
    controlSources = "string",
    controlSets = list(
      list(
        id = "string",
        name = "string",
        controls = list(
          list(
            arn = "string",
            id = "string",
            type = "Standard"|"Custom"|"Core",
            name = "string",
            description = "string",
            testingInformation = "string",
            actionPlanTitle = "string",
            actionPlanInstructions = "string",
            controlSources = "string",
            controlMappingSources = list(
              list(
                sourceId = "string",
                sourceName = "string",
                sourceDescription = "string",
                sourceSetUpOption = "System_Controls_Mapping"|"Procedural_Controls_Mapping",
                sourceType = "AWS_Cloudtrail"|"AWS_Config"|"AWS_Security_Hub"|"AWS_API_Call"|"MANUAL"|"Common_Control"|"Core_Control",
                sourceKeyword = list(
                  keywordInputType = "SELECT_FROM_LIST"|"UPLOAD_FILE"|"INPUT_TEXT",
                  keywordValue = "string"
                ),
                sourceFrequency = "DAILY"|"WEEKLY"|"MONTHLY",
                troubleshootingText = "string"
              )
            ),
            createdAt = as.POSIXct(
              "2015-01-01"
            ),
            lastUpdatedAt = as.POSIXct(
              "2015-01-01"
            ),
            createdBy = "string",
            lastUpdatedBy = "string",
            tags = list(
              "string"
            ),
            state = "ACTIVE"|"END_OF_SUPPORT"
          )
        )
      )
    ),
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdatedAt = as.POSIXct(
      "2015-01-01"
    ),
    createdBy = "string",
    lastUpdatedBy = "string",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$get_assessment_framework(
  frameworkId = "string"
)