Class CfnNodegroupPropsMixin.LaunchTemplateSpecificationProperty
An object representing a node group launch template specification.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnNodegroupPropsMixin.LaunchTemplateSpecificationProperty : CfnNodegroupPropsMixin.ILaunchTemplateSpecificationProperty
Syntax (vb)
Public Class CfnNodegroupPropsMixin.LaunchTemplateSpecificationProperty Implements CfnNodegroupPropsMixin.ILaunchTemplateSpecificationProperty
Remarks
The launch template can't include SubnetId , IamInstanceProfile , RequestSpotInstances , HibernationOptions , or TerminateInstances , or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Customizing managed nodes with launch templates in the Amazon EKS User Guide .
You must specify either the launch template ID or the launch template name in the request, but not both.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins;
var launchTemplateSpecificationProperty = new LaunchTemplateSpecificationProperty {
Id = "id",
Name = "name",
Version = "version"
};
Synopsis
Constructors
| LaunchTemplateSpecificationProperty() | An object representing a node group launch template specification. |
Properties
| Id | The ID of the launch template. |
| Name | The name of the launch template. |
| Version | The version number of the launch template to use. |
Constructors
LaunchTemplateSpecificationProperty()
An object representing a node group launch template specification.
public LaunchTemplateSpecificationProperty()
Remarks
The launch template can't include SubnetId , IamInstanceProfile , RequestSpotInstances , HibernationOptions , or TerminateInstances , or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Customizing managed nodes with launch templates in the Amazon EKS User Guide .
You must specify either the launch template ID or the launch template name in the request, but not both.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins;
var launchTemplateSpecificationProperty = new LaunchTemplateSpecificationProperty {
Id = "id",
Name = "name",
Version = "version"
};
Properties
Id
The ID of the launch template.
public string? Id { get; set; }
Property Value
Remarks
You must specify either the launch template ID or the launch template name in the request, but not both. After node group creation, you cannot use a different ID.
Name
The name of the launch template.
public string? Name { get; set; }
Property Value
Remarks
You must specify either the launch template name or the launch template ID in the request, but not both. After node group creation, you cannot use a different name.
Version
The version number of the launch template to use.
public string? Version { get; set; }
Property Value
Remarks
If no version is specified, then the template's default version is used. You can use a different version for node group updates.