interface FastLaunchLaunchTemplateSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnDistributionConfigurationPropsMixin_FastLaunchLaunchTemplateSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnDistributionConfigurationPropsMixin » FastLaunchLaunchTemplateSpecificationProperty |
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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const fastLaunchLaunchTemplateSpecificationProperty: imagebuilder_mixins.CfnDistributionConfigurationPropsMixin.FastLaunchLaunchTemplateSpecificationProperty = {
launchTemplateId: 'launchTemplateId',
launchTemplateName: 'launchTemplateName',
launchTemplateVersion: 'launchTemplateVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| launch | string | The ID of the launch template to use for faster launching for a Windows AMI. |
| launch | string | The name of the launch template to use for faster launching for a Windows AMI. |
| launch | string | The version of the launch template to use for faster launching for a Windows AMI. |
launchTemplateId?
Type:
string
(optional)
The ID of the launch template to use for faster launching for a Windows AMI.
launchTemplateName?
Type:
string
(optional)
The name of the launch template to use for faster launching for a Windows AMI.
launchTemplateVersion?
Type:
string
(optional)
The version of the launch template to use for faster launching for a Windows AMI.

.NET
Go
Java
Python
TypeScript