Class CfnReviewTemplate

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.wellarchitected.CfnReviewTemplate
All Implemented Interfaces:
IInspectable, IEnvironmentAware, IReviewTemplateRef, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:13.767Z") @Stability(Stable) public class CfnReviewTemplate extends CfnResource implements IInspectable, IReviewTemplateRef, ITaggableV2
Creates a review template for the Well-Architected Tool.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wellarchitected.*;
 CfnReviewTemplate cfnReviewTemplate = CfnReviewTemplate.Builder.create(this, "MyCfnReviewTemplate")
         .description("description")
         .lenses(List.of("lenses"))
         .templateName("templateName")
         // the properties below are optional
         .notes("notes")
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnReviewTemplate

      protected CfnReviewTemplate(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnReviewTemplate

      protected CfnReviewTemplate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnReviewTemplate

      @Stability(Stable) public CfnReviewTemplate(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnReviewTemplateProps props)
      Create a new AWS::WellArchitected::ReviewTemplate.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • isCfnReviewTemplate

      @Stability(Stable) @NotNull public static Boolean isCfnReviewTemplate(@NotNull Object x)
      Checks whether the given object is a CfnReviewTemplate.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrOwner

      @Stability(Stable) @NotNull public String getAttrOwner()
      The owner of the review template.
    • getAttrTemplateArn

      @Stability(Stable) @NotNull public String getAttrTemplateArn()
      The review template ARN.
    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
      The date and time the review template was last updated.
    • getAttrUpdateStatus

      @Stability(Stable) @NotNull public String getAttrUpdateStatus()
      The latest status of the review template.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getReviewTemplateRef

      @Stability(Stable) @NotNull public ReviewTemplateReference getReviewTemplateRef()
      A reference to a ReviewTemplate resource.
      Specified by:
      getReviewTemplateRef in interface IReviewTemplateRef
    • getDescription

      @Stability(Stable) @NotNull public String getDescription()
      The review template description.
    • setDescription

      @Stability(Stable) public void setDescription(@NotNull String value)
      The review template description.
    • getLenses

      @Stability(Stable) @NotNull public List<String> getLenses()
      The lenses applied to the review template.
    • setLenses

      @Stability(Stable) public void setLenses(@NotNull List<String> value)
      The lenses applied to the review template.
    • getTemplateName

      @Stability(Stable) @NotNull public String getTemplateName()
      The name of the review template.
    • setTemplateName

      @Stability(Stable) public void setTemplateName(@NotNull String value)
      The name of the review template.
    • getNotes

      @Stability(Stable) @Nullable public String getNotes()
      The notes associated with the review template.
    • setNotes

      @Stability(Stable) public void setNotes(@Nullable String value)
      The notes associated with the review template.
    • getTags

      @Stability(Stable) @Nullable public List<CfnReviewTemplate.TagsItemsProperty> getTags()
      The tags assigned to the review template.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnReviewTemplate.TagsItemsProperty> value)
      The tags assigned to the review template.