Class CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.
Inherited Members
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty : CfnDistributionConfiguration.IFastLaunchLaunchTemplateSpecificationProperty
Syntax (vb)
Public Class CfnDistributionConfiguration.FastLaunchLaunchTemplateSpecificationProperty Implements CfnDistributionConfiguration.IFastLaunchLaunchTemplateSpecificationProperty
Remarks
You can specify either the <code>launchTemplateName</code> or the <code>launchTemplateId</code> , 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() | Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled. |
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()
Identifies the launch template that the associated Windows AMI uses for launching an instance when faster launching is enabled.
public FastLaunchLaunchTemplateSpecificationProperty()
Remarks
You can specify either the <code>launchTemplateName</code> or the <code>launchTemplateId</code> , 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"
};
Properties
LaunchTemplateId
The ID of the launch template to use for faster launching for a Windows AMI.
public string? LaunchTemplateId { get; set; }
Property Value
Remarks
LaunchTemplateName
The name of the launch template to use for faster launching for a Windows AMI.
public string? LaunchTemplateName { get; set; }
Property Value
Remarks
LaunchTemplateVersion
The version of the launch template to use for faster launching for a Windows AMI.
public string? LaunchTemplateVersion { get; set; }