interface CustomLaunchTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnComputeNodeGroupPropsMixin_CustomLaunchTemplateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnComputeNodeGroupPropsMixin.CustomLaunchTemplateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » 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 { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const customLaunchTemplateProperty: pcs.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