Skip to content

List Lenses

wellarchitected_list_lenses R Documentation

List the available lenses

Description

List the available lenses.

Usage

wellarchitected_list_lenses(NextToken, MaxResults, LensType, LensStatus,
  LensName)

Arguments

NextToken

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

MaxResults

The maximum number of results to return for this request.

LensType

The type of lenses to be returned.

LensStatus

The status of lenses to be returned.

LensName

The full name of the lens.

Value

A list with the following syntax:

list(
  LensSummaries = list(
    list(
      LensArn = "string",
      LensAlias = "string",
      LensName = "string",
      LensType = "AWS_OFFICIAL"|"CUSTOM_SHARED"|"CUSTOM_SELF",
      Description = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LensVersion = "string",
      Owner = "string",
      LensStatus = "CURRENT"|"NOT_CURRENT"|"DEPRECATED"|"DELETED"|"UNSHARED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_lenses(
  NextToken = "string",
  MaxResults = 123,
  LensType = "AWS_OFFICIAL"|"CUSTOM_SHARED"|"CUSTOM_SELF",
  LensStatus = "ALL"|"DRAFT"|"PUBLISHED",
  LensName = "string"
)