Interface CfnDistributionConfiguration.FastLaunchConfigurationProperty

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

@Stability(Stable) public static interface CfnDistributionConfiguration.FastLaunchConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Define and configure faster launching for output Windows AMIs.

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.*;
 FastLaunchConfigurationProperty fastLaunchConfigurationProperty = FastLaunchConfigurationProperty.builder()
         .accountId("accountId")
         .enabled(false)
         .launchTemplate(FastLaunchLaunchTemplateSpecificationProperty.builder()
                 .launchTemplateId("launchTemplateId")
                 .launchTemplateName("launchTemplateName")
                 .launchTemplateVersion("launchTemplateVersion")
                 .build())
         .maxParallelLaunches(123)
         .snapshotConfiguration(FastLaunchSnapshotConfigurationProperty.builder()
                 .targetResourceCount(123)
                 .build())
         .build();
 

See Also: