interface CustomLaunchTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnComputeNodeGroup_CustomLaunchTemplateProperty |
Java | software.amazon.awscdk.services.pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty |
Python | aws_cdk.aws_pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnComputeNodeGroup » 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 { aws_pcs as pcs } from 'aws-cdk-lib';
const customLaunchTemplateProperty: pcs.CfnComputeNodeGroup.CustomLaunchTemplateProperty = {
version: 'version',
// the properties below are optional
templateId: 'templateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| version | string | The version of the EC2 launch template to use to provision instances. |
| template | string | The ID of the EC2 launch template to use to provision instances. |
version
Type:
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.

.NET
Go
Java
Python
TypeScript