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 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.services.imagebuilder.*; FastLaunchLaunchTemplateSpecificationProperty fastLaunchLaunchTemplateSpecificationProperty = FastLaunchLaunchTemplateSpecificationProperty.builder() .launchTemplateId("launchTemplateId") .launchTemplateName("launchTemplateName") .launchTemplateVersion("launchTemplateVersion") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The ID of the launch template to use for faster launching for a Windows AMI.default String
The name of the launch template to use for faster launching for a Windows AMI.default String
The 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 CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty.Builder builder()
-