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 Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Internal default implementation for IMergeStrategy.
    static final class 
    A proxy class which represents a concrete javascript instance of this type.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(com.fasterxml.jackson.databind.node.ObjectNode target, com.fasterxml.jackson.databind.node.ObjectNode source, List<String> allowedKeys)
    Apply properties from source to target for the given keys.

    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.
      This parameter is required.
      source -
      • The property values to apply.
      This parameter is required.
      allowedKeys -
      • Only properties whose names are in this list will be read from source and written to target.
      This parameter is required.