Interface CfnDistributionConfiguration.IFastLaunchLaunchTemplateSpecificationProperty
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFastLaunchLaunchTemplateSpecificationProperty
Syntax (vb)
Public Interface IFastLaunchLaunchTemplateSpecificationProperty
Remarks
You can specify either the launchTemplateName
or the launchTemplateId
, but not both.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ImageBuilder;
var fastLaunchLaunchTemplateSpecificationProperty = new FastLaunchLaunchTemplateSpecificationProperty {
LaunchTemplateId = "launchTemplateId",
LaunchTemplateName = "launchTemplateName",
LaunchTemplateVersion = "launchTemplateVersion"
};
Synopsis
Properties
LaunchTemplateId | The ID of the launch template to use for faster launching for a Windows AMI. |
LaunchTemplateName | The name of the launch template to use for faster launching for a Windows AMI. |
LaunchTemplateVersion | The version of the launch template to use for faster launching for a Windows AMI. |
Properties
LaunchTemplateId
The ID of the launch template to use for faster launching for a Windows AMI.
virtual string LaunchTemplateId { get; }
Property Value
System.String
Remarks
LaunchTemplateName
The name of the launch template to use for faster launching for a Windows AMI.
virtual string LaunchTemplateName { get; }
Property Value
System.String
Remarks
LaunchTemplateVersion
The version of the launch template to use for faster launching for a Windows AMI.
virtual string LaunchTemplateVersion { get; }
Property Value
System.String