interface InstanceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnComputeNodeGroupPropsMixin.InstanceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnComputeNodeGroupPropsMixin_InstanceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnComputeNodeGroupPropsMixin.InstanceConfigProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnComputeNodeGroupPropsMixin.InstanceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnComputeNodeGroupPropsMixin » InstanceConfigProperty |
An EC2 instance configuration 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 { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const instanceConfigProperty: pcs_mixins.CfnComputeNodeGroupPropsMixin.InstanceConfigProperty = {
instanceType: 'instanceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The EC2 instance type that AWS PCS can provision in the compute node group. |
instanceType?
Type:
string
(optional)
The EC2 instance type that AWS PCS can provision in the compute node group.
Example: t2.xlarge

.NET
Go
Java
Python
TypeScript