Skip to content

Get Analyzer

accessanalyzer_get_analyzer R Documentation

Retrieves information about the specified analyzer

Description

Retrieves information about the specified analyzer.

Usage

accessanalyzer_get_analyzer(analyzerName)

Arguments

analyzerName

[required] The name of the analyzer retrieved.

Value

A list with the following syntax:

list(
  analyzer = list(
    arn = "string",
    name = "string",
    type = "ACCOUNT"|"ORGANIZATION"|"ACCOUNT_UNUSED_ACCESS"|"ORGANIZATION_UNUSED_ACCESS",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    lastResourceAnalyzed = "string",
    lastResourceAnalyzedAt = as.POSIXct(
      "2015-01-01"
    ),
    tags = list(
      "string"
    ),
    status = "ACTIVE"|"CREATING"|"DISABLED"|"FAILED",
    statusReason = list(
      code = "AWS_SERVICE_ACCESS_DISABLED"|"DELEGATED_ADMINISTRATOR_DEREGISTERED"|"ORGANIZATION_DELETED"|"SERVICE_LINKED_ROLE_CREATION_FAILED"
    ),
    configuration = list(
      unusedAccess = list(
        unusedAccessAge = 123
      )
    )
  )
)

Request syntax

svc$get_analyzer(
  analyzerName = "string"
)