Interface CfnMicrovmImage.HooksProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMicrovmImage.HooksProperty.Jsii$Proxy
Enclosing class:
CfnMicrovmImage

@Stability(Stable) public static interface CfnMicrovmImage.HooksProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 HooksProperty hooksProperty = HooksProperty.builder()
         .microvmHooks(MicrovmHooksProperty.builder()
                 .resume("resume")
                 .resumeTimeoutInSeconds(123)
                 .run("run")
                 .runTimeoutInSeconds(123)
                 .suspend("suspend")
                 .suspendTimeoutInSeconds(123)
                 .terminate("terminate")
                 .terminateTimeoutInSeconds(123)
                 .build())
         .microvmImageHooks(MicrovmImageHooksProperty.builder()
                 .ready("ready")
                 .readyTimeoutInSeconds(123)
                 .validate("validate")
                 .validateTimeoutInSeconds(123)
                 .build())
         .port(123)
         .build();
 

See Also: