Interface MixinApplication

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MixinApplication.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-09T14:39:35.101Z") @Stability(Experimental) public interface MixinApplication extends software.amazon.jsii.JsiiSerializable
(experimental) Represents a successful mixin application.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.core.*;
 import software.constructs.*;
 Construct construct;
 Mixin mixin;
 MixinApplication mixinApplication = MixinApplication.builder()
         .construct(construct)
         .mixin(mixin)
         .build();
 
  • Method Details

    • getConstruct

      @Stability(Experimental) @NotNull software.constructs.IConstruct getConstruct()
      (experimental) The construct the mixin was applied to.
    • getMixin

      @Stability(Experimental) @NotNull IMixin getMixin()
      (experimental) The mixin that was applied.
    • builder

      @Stability(Experimental) static MixinApplication.Builder builder()
      Returns:
      a MixinApplication.Builder of MixinApplication