interface CustomLaunchTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnComputeNodeGroupPropsMixin_CustomLaunchTemplateProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnComputeNodeGroupPropsMixin » CustomLaunchTemplateProperty |
An Amazon EC2 launch template AWS PCS uses to launch compute nodes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const customLaunchTemplateProperty: pcs_mixins.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty = {
templateId: 'templateId',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| template | string | The ID of the EC2 launch template to use to provision instances. |
| version? | string | The version of the EC2 launch template to use to provision instances. |
templateId?
Type:
string
(optional)
The ID of the EC2 launch template to use to provision instances.
version?
Type:
string
(optional)
The version of the EC2 launch template to use to provision instances.

.NET
Go
Java
Python
TypeScript