Package software.amazon.awscdk
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMixinApplicationstatic final classAn implementation forMixinApplication -
Method Summary
Modifier and TypeMethodDescriptionstatic MixinApplication.Builderbuilder()software.constructs.IConstructThe construct the mixin was applied to.software.constructs.IMixingetMixin()The mixin that was applied.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
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
- Returns:
- a
MixinApplication.BuilderofMixinApplication
-