Interface LaunchTemplateProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:00.963Z") @Stability(Stable) public interface LaunchTemplateProps extends software.amazon.jsii.JsiiSerializable
Properties of a LaunchTemplate.

Example:

 Vpc vpc;
 SecurityGroup sg1 = SecurityGroup.Builder.create(this, "sg1")
         .vpc(vpc)
         .build();
 SecurityGroup sg2 = SecurityGroup.Builder.create(this, "sg2")
         .vpc(vpc)
         .build();
 LaunchTemplate launchTemplate = LaunchTemplate.Builder.create(this, "LaunchTemplate")
         .machineImage(MachineImage.latestAmazonLinux2023())
         .securityGroup(sg1)
         .build();
 launchTemplate.addSecurityGroup(sg2);