Skip to content

List Check Details

wellarchitected_list_check_details R Documentation

Description

List of Trusted Advisor check details by account related to the workload.

Usage

wellarchitected_list_check_details(WorkloadId, NextToken, MaxResults,
  LensArn, PillarId, QuestionId, ChoiceId)

Arguments

WorkloadId

[required] The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.

NextToken

The token to use to retrieve the next set of results.

MaxResults

The maximum number of results to return for this request.

LensArn

[required] Well-Architected Lens ARN.

PillarId

[required] The ID used to identify a pillar, for example, security.

A pillar is identified by its PillarReviewSummary$PillarId.

QuestionId

[required] The ID of the question.

ChoiceId

[required] The ID of a choice.

Value

A list with the following syntax:

list(
  CheckDetails = list(
    list(
      Id = "string",
      Name = "string",
      Description = "string",
      Provider = "TRUSTED_ADVISOR",
      LensArn = "string",
      PillarId = "string",
      QuestionId = "string",
      ChoiceId = "string",
      Status = "OKAY"|"WARNING"|"ERROR"|"NOT_AVAILABLE"|"FETCH_FAILED",
      AccountId = "string",
      FlaggedResources = 123,
      Reason = "ASSUME_ROLE_ERROR"|"ACCESS_DENIED"|"UNKNOWN_ERROR"|"PREMIUM_SUPPORT_REQUIRED",
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_check_details(
  WorkloadId = "string",
  NextToken = "string",
  MaxResults = 123,
  LensArn = "string",
  PillarId = "string",
  QuestionId = "string",
  ChoiceId = "string"
)