LaunchTemplateSpec
- class aws_cdk.aws_eks_v2.LaunchTemplateSpec(*, id, version=None)
Bases:
objectLaunch template property specification.
- Parameters:
id (
str) – The Launch template ID.version (
Optional[str]) – The launch template version to be used (optional). Default: - the default version of the launch template
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_eks_v2 as eks_v2 launch_template_spec = eks_v2.LaunchTemplateSpec( id="id", # the properties below are optional version="version" )
Attributes
- id
The Launch template ID.
- version
The launch template version to be used (optional).
- Default:
the default version of the launch template