Interface CfnReviewTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReviewTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:13.768Z")
@Stability(Stable)
public interface CfnReviewTemplateProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReviewTemplate.
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.*;
CfnReviewTemplateProps cfnReviewTemplateProps = CfnReviewTemplateProps.builder()
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReviewTemplatePropsstatic final classAn implementation forCfnReviewTemplateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The review template description.The lenses applied to the review template.default StringgetNotes()The notes associated with the review template.default List<CfnReviewTemplate.TagsItemsProperty> getTags()The tags assigned to the review template.The name of the review template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The review template description.- See Also:
-
getLenses
The lenses applied to the review template.- See Also:
-
getTemplateName
The name of the review template.- See Also:
-
getNotes
The notes associated with the review template.- See Also:
-
getTags
The tags assigned to the review template.- See Also:
-
builder
- Returns:
- a
CfnReviewTemplateProps.BuilderofCfnReviewTemplateProps
-