Skip to content

List Notifications

wellarchitected_list_notifications R Documentation

List lens notifications

Description

List lens notifications.

Usage

wellarchitected_list_notifications(WorkloadId, NextToken, MaxResults,
  ResourceArn)

Arguments

WorkloadId

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.

ResourceArn

The ARN for the related resource for the notification.

Only one of WorkloadID or ResourceARN should be specified.

Value

A list with the following syntax:

list(
  NotificationSummaries = list(
    list(
      Type = "LENS_VERSION_UPGRADED"|"LENS_VERSION_DEPRECATED",
      LensUpgradeSummary = list(
        WorkloadId = "string",
        WorkloadName = "string",
        LensAlias = "string",
        LensArn = "string",
        CurrentLensVersion = "string",
        LatestLensVersion = "string",
        ResourceArn = "string",
        ResourceName = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_notifications(
  WorkloadId = "string",
  NextToken = "string",
  MaxResults = 123,
  ResourceArn = "string"
)