Interface FastLaunchConfiguration

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

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-20T23:37:34.458Z") @Stability(Experimental) public interface FastLaunchConfiguration extends software.amazon.jsii.JsiiSerializable
(experimental) The EC2 Fast Launch configuration to use for the Windows AMI.

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.imagebuilder.alpha.*;
 import software.amazon.awscdk.services.ec2.*;
 LaunchTemplate launchTemplate;
 FastLaunchConfiguration fastLaunchConfiguration = FastLaunchConfiguration.builder()
         .enabled(false)
         .launchTemplate(launchTemplate)
         .maxParallelLaunches(123)
         .targetSnapshotCount(123)
         .build();