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.
TemplateNameThe review template name.
DescriptionThe review template description.
NotesLensesToAssociateA list of lens aliases or ARNs to apply to the review template.
LensesToDisassociateA list of lens aliases or ARNs to unapply to the review template. The
wellarchitectedlens 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"
)
)