Skip to content

Update Review Template

wellarchitected_update_review_template R Documentation

Update a review template

Description

Update a review template.

Usage

wellarchitected_update_review_template(TemplateArn, TemplateName,
  Description, Notes, LensesToAssociate, LensesToDisassociate)

Arguments

TemplateArn

[required] The review template ARN.

TemplateName

The review template name.

Description

The review template description.

Notes
LensesToAssociate

A list of lens aliases or ARNs to apply to the review template.

LensesToDisassociate

A list of lens aliases or ARNs to unapply to the review template. The wellarchitected lens cannot be unapplied.

Value

A list with the following syntax:

list(
  ReviewTemplate = list(
    Description = "string",
    Lenses = list(
      "string"
    ),
    Notes = "string",
    QuestionCounts = list(
      123
    ),
    Owner = "string",
    UpdatedAt = as.POSIXct(
      "2015-01-01"
    ),
    TemplateArn = "string",
    TemplateName = "string",
    Tags = list(
      "string"
    ),
    UpdateStatus = "CURRENT"|"LENS_NOT_CURRENT",
    ShareInvitationId = "string"
  )
)

Request syntax

svc$update_review_template(
  TemplateArn = "string",
  TemplateName = "string",
  Description = "string",
  Notes = "string",
  LensesToAssociate = list(
    "string"
  ),
  LensesToDisassociate = list(
    "string"
  )
)