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