interface FastLaunchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnDistributionConfiguration.FastLaunchConfigurationProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnDistributionConfiguration.FastLaunchConfigurationProperty |
Python | aws_cdk.aws_imagebuilder.CfnDistributionConfiguration.FastLaunchConfigurationProperty |
TypeScript | @aws-cdk/aws-imagebuilder » CfnDistributionConfiguration » FastLaunchConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder from '@aws-cdk/aws-imagebuilder';
const fastLaunchConfigurationProperty: imagebuilder.CfnDistributionConfiguration.FastLaunchConfigurationProperty = {
accountId: 'accountId',
enabled: false,
launchTemplate: {
launchTemplateId: 'launchTemplateId',
launchTemplateName: 'launchTemplateName',
launchTemplateVersion: 'launchTemplateVersion',
},
maxParallelLaunches: 123,
snapshotConfiguration: {
targetResourceCount: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | CfnDistributionConfiguration.FastLaunchConfigurationProperty.AccountId. |
| enabled? | boolean | IResolvable | CfnDistributionConfiguration.FastLaunchConfigurationProperty.Enabled. |
| launch | IResolvable | Fast | CfnDistributionConfiguration.FastLaunchConfigurationProperty.LaunchTemplate. |
| max | number | CfnDistributionConfiguration.FastLaunchConfigurationProperty.MaxParallelLaunches. |
| snapshot | IResolvable | Fast | CfnDistributionConfiguration.FastLaunchConfigurationProperty.SnapshotConfiguration. |
accountId?
Type:
string
(optional)
CfnDistributionConfiguration.FastLaunchConfigurationProperty.AccountId.
enabled?
Type:
boolean | IResolvable
(optional)
CfnDistributionConfiguration.FastLaunchConfigurationProperty.Enabled.
launchTemplate?
Type:
IResolvable | Fast
(optional)
CfnDistributionConfiguration.FastLaunchConfigurationProperty.LaunchTemplate.
maxParallelLaunches?
Type:
number
(optional)
CfnDistributionConfiguration.FastLaunchConfigurationProperty.MaxParallelLaunches.
snapshotConfiguration?
Type:
IResolvable | Fast
(optional)
CfnDistributionConfiguration.FastLaunchConfigurationProperty.SnapshotConfiguration.

.NET
Java
Python
TypeScript