Skip to content

Update Analyzer

accessanalyzer_update_analyzer R Documentation

Modifies the configuration of an existing analyzer

Description

Modifies the configuration of an existing analyzer.

Usage

accessanalyzer_update_analyzer(analyzerName, configuration)

Arguments

analyzerName

[required] The name of the analyzer to modify.

configuration

Value

A list with the following syntax:

list(
  configuration = list(
    unusedAccess = list(
      unusedAccessAge = 123,
      analysisRule = list(
        exclusions = list(
          list(
            accountIds = list(
              "string"
            ),
            resourceTags = list(
              list(
                "string"
              )
            )
          )
        )
      )
    )
  )
)

Request syntax

svc$update_analyzer(
  analyzerName = "string",
  configuration = list(
    unusedAccess = list(
      unusedAccessAge = 123,
      analysisRule = list(
        exclusions = list(
          list(
            accountIds = list(
              "string"
            ),
            resourceTags = list(
              list(
                "string"
              )
            )
          )
        )
      )
    )
  )
)