Package org.cdk8s
Interface IResolver
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IResolver.Jsii$Default
- All Known Implementing Classes:
ImplicitTokenResolver
,IResolver.Jsii$Proxy
,LazyResolver
,NumberStringUnionResolver
@Generated(value="jsii-pacmak/1.92.0 (build db7f27d)", date="2023-12-07T12:12:42.680Z") @Stability(Stable) public interface IResolver extends software.amazon.jsii.JsiiSerializable
Contract for resolver objects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IResolver.Jsii$Default
Internal default implementation forIResolver
.static class
IResolver.Jsii$Proxy
A proxy class which represents a concrete javascript instance of this type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
resolve(ResolutionContext context)
This function is invoked on every property during cdk8s synthesis.
-
-
-
Method Detail
-
resolve
@Stability(Stable) void resolve(@NotNull ResolutionContext context)
This function is invoked on every property during cdk8s synthesis.To replace a value, implementations must invoke
context.replaceValue
.- Parameters:
context
- This parameter is required.
-
-