Class CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.
Inheritance
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FastLaunchLaunchTemplateSpecificationProperty : Object, CfnDistributionConfiguration.IFastLaunchLaunchTemplateSpecificationProperty
Syntax (vb)
Public Class FastLaunchLaunchTemplateSpecificationProperty
Inherits Object
Implements CfnDistributionConfiguration.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
Constructors
FastLaunchLaunchTemplateSpecificationProperty() |
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. |
Constructors
FastLaunchLaunchTemplateSpecificationProperty()
public FastLaunchLaunchTemplateSpecificationProperty()
Properties
LaunchTemplateId
The ID of the launch template to use for faster launching for a Windows AMI.
public string LaunchTemplateId { get; set; }
Property Value
System.String
Remarks
LaunchTemplateName
The name of the launch template to use for faster launching for a Windows AMI.
public string LaunchTemplateName { get; set; }
Property Value
System.String
Remarks
LaunchTemplateVersion
The version of the launch template to use for faster launching for a Windows AMI.
public string LaunchTemplateVersion { get; set; }
Property Value
System.String