Package software.amazon.awscdk
Interface IMergeStrategy
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IMergeStrategy.Jsii$Default
- All Known Implementing Classes:
IMergeStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:35.550Z")
@Stability(Stable)
public interface IMergeStrategy
extends software.amazon.jsii.JsiiSerializable
Interface for applying properties to a target using a specific strategy.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceInternal default implementation forIMergeStrategy.static final classA proxy class which represents a concrete javascript instance of this type. -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
apply
@Stability(Stable) void apply(@NotNull com.fasterxml.jackson.databind.node.ObjectNode target, @NotNull com.fasterxml.jackson.databind.node.ObjectNode source, @NotNull List<String> allowedKeys) Apply properties from source to target for the given keys.- Parameters:
target-- The construct to apply properties to.
source-- The property values to apply.
allowedKeys-- Only properties whose names are in this list will be read from
sourceand written totarget.
- Only properties whose names are in this list will be read from
-