interface LaunchTemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnDistributionConfigurationPropsMixin.LaunchTemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnDistributionConfigurationPropsMixin_LaunchTemplateConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnDistributionConfigurationPropsMixin.LaunchTemplateConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnDistributionConfigurationPropsMixin.LaunchTemplateConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnDistributionConfigurationPropsMixin » LaunchTemplateConfigurationProperty |
Identifies an Amazon EC2 launch template to use for a specific account.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const launchTemplateConfigurationProperty: imagebuilder.CfnDistributionConfigurationPropsMixin.LaunchTemplateConfigurationProperty = {
accountId: 'accountId',
launchTemplateId: 'launchTemplateId',
setDefaultVersion: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The account ID that this configuration applies to. |
| launch | string | ILaunch | Identifies the Amazon EC2 launch template to use. |
| set | boolean | IResolvable | Set the specified Amazon EC2 launch template as the default launch template for the specified account. |
accountId?
Type:
string
(optional)
The account ID that this configuration applies to.
launchTemplateId?
Type:
string | ILaunch
(optional)
Identifies the Amazon EC2 launch template to use.
setDefaultVersion?
Type:
boolean | IResolvable
(optional)
Set the specified Amazon EC2 launch template as the default launch template for the specified account.

.NET
Go
Java
Python
TypeScript