interface FastLaunchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnDistributionConfigurationPropsMixin.FastLaunchConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnDistributionConfigurationPropsMixin_FastLaunchConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.FastLaunchConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnDistributionConfigurationPropsMixin.FastLaunchConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnDistributionConfigurationPropsMixin » FastLaunchConfigurationProperty |
Define and configure faster launching for output Windows AMIs.
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 fastLaunchConfigurationProperty: imagebuilder_mixins.CfnDistributionConfigurationPropsMixin.FastLaunchConfigurationProperty = {
accountId: 'accountId',
enabled: false,
launchTemplate: {
launchTemplateId: 'launchTemplateId',
launchTemplateName: 'launchTemplateName',
launchTemplateVersion: 'launchTemplateVersion',
},
maxParallelLaunches: 123,
snapshotConfiguration: {
targetResourceCount: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The owner account ID for the fast-launch enabled Windows AMI. |
| enabled? | boolean | IResolvable | A Boolean that represents the current state of faster launching for the Windows AMI. |
| launch | IResolvable | Fast | The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots. |
| max | number | The maximum number of parallel instances that are launched for creating resources. |
| snapshot | IResolvable | Fast | Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled. |
accountId?
Type:
string
(optional)
The owner account ID for the fast-launch enabled Windows AMI.
enabled?
Type:
boolean | IResolvable
(optional)
A Boolean that represents the current state of faster launching for the Windows AMI.
Set to true to start using Windows faster launching, or false to stop using it.
launchTemplate?
Type:
IResolvable | Fast
(optional)
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
maxParallelLaunches?
Type:
number
(optional)
The maximum number of parallel instances that are launched for creating resources.
snapshotConfiguration?
Type:
IResolvable | Fast
(optional)
Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.

.NET
Go
Java
Python
TypeScript