interface LaunchTemplateSpec
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.LaunchTemplateSpec |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#LaunchTemplateSpec |
Java | software.amazon.awscdk.services.eks_v2.LaunchTemplateSpec |
Python | aws_cdk.aws_eks_v2.LaunchTemplateSpec |
TypeScript (source) | aws-cdk-lib » aws_eks_v2 » LaunchTemplateSpec |
Launch template property specification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const launchTemplateSpec: eks_v2.LaunchTemplateSpec = {
id: 'id',
// the properties below are optional
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The Launch template ID. |
| version? | string | The launch template version to be used (optional). |
id
Type:
string
The Launch template ID.
version?
Type:
string
(optional, default: the default version of the launch template)
The launch template version to be used (optional).

.NET
Go
Java
Python
TypeScript (