Skip to content

List Check Summaries

wellarchitected_list_check_summaries R Documentation

Description

List of Trusted Advisor checks summarized for all accounts related to the workload.

Usage

wellarchitected_list_check_summaries(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(
  CheckSummaries = list(
    list(
      Id = "string",
      Name = "string",
      Provider = "TRUSTED_ADVISOR",
      Description = "string",
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LensArn = "string",
      PillarId = "string",
      QuestionId = "string",
      ChoiceId = "string",
      Status = "OKAY"|"WARNING"|"ERROR"|"NOT_AVAILABLE"|"FETCH_FAILED",
      AccountSummary = list(
        123
      )
    )
  ),
  NextToken = "string"
)

Request syntax

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