Interface CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty

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

@Stability(Stable) public static interface CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.

You can specify either the launchTemplateName or the launchTemplateId , but not both.

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.*;
 FastLaunchLaunchTemplateSpecificationProperty fastLaunchLaunchTemplateSpecificationProperty = FastLaunchLaunchTemplateSpecificationProperty.builder()
         .launchTemplateId("launchTemplateId")
         .launchTemplateName("launchTemplateName")
         .launchTemplateVersion("launchTemplateVersion")
         .build();
 

See Also: