Interface MixinApplication

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:35.605Z") @Stability(Stable) public interface MixinApplication extends software.amazon.jsii.JsiiSerializable
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.*;
 import software.constructs.*;
 Construct construct;
 IMixin mixin;
 MixinApplication mixinApplication = MixinApplication.builder()
         .construct(construct)
         .mixin(mixin)
         .build();
 
  • Method Details

    • getConstruct

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

      @Stability(Stable) @NotNull software.constructs.IMixin getMixin()
      The mixin that was applied.
    • builder

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