Skip to content

List Milestones

wellarchitected_list_milestones R Documentation

List all milestones for an existing workload

Description

List all milestones for an existing workload.

Usage

wellarchitected_list_milestones(WorkloadId, NextToken, MaxResults)

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.

Value

A list with the following syntax:

list(
  WorkloadId = "string",
  MilestoneSummaries = list(
    list(
      MilestoneNumber = 123,
      MilestoneName = "string",
      RecordedAt = as.POSIXct(
        "2015-01-01"
      ),
      WorkloadSummary = 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_milestones(
  WorkloadId = "string",
  NextToken = "string",
  MaxResults = 123
)