Interface CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnDistributionConfigurationPropsMixin
@Stability(Stable)
public static interface CfnDistributionConfigurationPropsMixin.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
launchTemplateNameor thelaunchTemplateId, 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.cfnpropertymixins.services.imagebuilder.*;
FastLaunchLaunchTemplateSpecificationProperty fastLaunchLaunchTemplateSpecificationProperty = FastLaunchLaunchTemplateSpecificationProperty.builder()
.launchTemplateId("launchTemplateId")
.launchTemplateName("launchTemplateName")
.launchTemplateVersion("launchTemplateVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of the launch template to use for faster launching for a Windows AMI.default StringThe name of the launch template to use for faster launching for a Windows AMI.default StringThe version of the launch template to use for faster launching for a Windows AMI.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLaunchTemplateId
The ID of the launch template to use for faster launching for a Windows AMI.- See Also:
-
getLaunchTemplateName
The name of the launch template to use for faster launching for a Windows AMI.- See Also:
-
getLaunchTemplateVersion
The version of the launch template to use for faster launching for a Windows AMI.- See Also:
-
builder
@Stability(Stable) static CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty.Builder builder()
-