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