Interface IMergeStrategy.Jsii$Default

All Superinterfaces:
IMergeStrategy, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
IMergeStrategy.Jsii$Proxy
Enclosing interface:
IMergeStrategy

@Internal public static interface IMergeStrategy.Jsii$Default extends IMergeStrategy
Internal default implementation for IMergeStrategy.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface software.amazon.awscdk.IMergeStrategy

    IMergeStrategy.Jsii$Default, IMergeStrategy.Jsii$Proxy
  • Method Summary

    Modifier and Type
    Method
    Description
    default 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) default 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.

      Specified by:
      apply in interface IMergeStrategy
      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.