interface ElasticInferenceAcceleratorProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EC2.CfnInstance.ElasticInferenceAcceleratorProperty | 
  Java | software.amazon.awscdk.services.ec2.CfnInstance.ElasticInferenceAcceleratorProperty | 
  Python | aws_cdk.aws_ec2.CfnInstance.ElasticInferenceAcceleratorProperty | 
  TypeScript  | @aws-cdk/aws-ec2 » CfnInstance » ElasticInferenceAcceleratorProperty | 
Specifies the Elastic Inference Accelerator for the instance.
ElasticInferenceAccelerator is a property of the AWS::EC2::Instance resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const elasticInferenceAcceleratorProperty: ec2.CfnInstance.ElasticInferenceAcceleratorProperty = {
  type: 'type',
  // the properties below are optional
  count: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| type | string | The type of elastic inference accelerator. | 
| count? | number | The number of elastic inference accelerators to attach to the instance. | 
type
Type:
string
The type of elastic inference accelerator.
The possible values are eia1.medium , eia1.large , eia1.xlarge , eia2.medium , eia2.large , and eia2.xlarge .
count?
Type:
number
(optional)
The number of elastic inference accelerators to attach to the instance.

 .NET
 Java
 Python
 TypeScript