Interface CfnLensProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLensProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:13.765Z")
@Stability(Stable)
public interface CfnLensProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLens.
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.*;
CfnLensProps cfnLensProps = CfnLensProps.builder()
.jsonString("jsonString")
.lensVersion("lensVersion")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLensPropsstatic final classAn implementation forCfnLensProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLensProps.Builderbuilder()default StringThe JSON representation of a lens.default StringThe version of the lens.default List<CfnLens.TagsItemsProperty> getTags()The tags assigned to the lens.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJsonString
The JSON representation of a lens.- See Also:
-
getLensVersion
The version of the lens.- See Also:
-
getTags
The tags assigned to the lens.- See Also:
-
builder
- Returns:
- a
CfnLensProps.BuilderofCfnLensProps
-