Skip to content

List Workloads

wellarchitected_list_workloads R Documentation

Paginated list of workloads

Description

Paginated list of workloads.

Usage

wellarchitected_list_workloads(WorkloadNamePrefix, NextToken,
  MaxResults)

Arguments

WorkloadNamePrefix

An optional string added to the beginning of each workload name returned in the results.

NextToken

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

MaxResults

The maximum number of results to return for this request.

Value

A list with the following syntax:

list(
  WorkloadSummaries = list(
    list(
      WorkloadId = "string",
      WorkloadArn = "string",
      WorkloadName = "string",
      Owner = "string",
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Lenses = list(
        "string"
      ),
      RiskCounts = list(
        123
      ),
      ImprovementStatus = "NOT_APPLICABLE"|"NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"RISK_ACKNOWLEDGED",
      Profiles = list(
        list(
          ProfileArn = "string",
          ProfileVersion = "string"
        )
      ),
      PrioritizedRiskCounts = list(
        123
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_workloads(
  WorkloadNamePrefix = "string",
  NextToken = "string",
  MaxResults = 123
)