Interface LaunchTemplateProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-08-19T15:41:17.387Z") @Stability(Stable) public interface LaunchTemplateProps extends software.amazon.jsii.JsiiSerializable
Properties of a LaunchTemplate.

Example:

 InstanceType instanceType;
 PlacementGroup pg = PlacementGroup.Builder.create(this, "test-pg")
         .strategy(PlacementGroupStrategy.SPREAD)
         .build();
 LaunchTemplate.Builder.create(this, "LaunchTemplate")
         .instanceType(instanceType)
         .machineImage(MachineImage.latestAmazonLinux2023())
         .placementGroup(pg)
         .build();