interface ElasticInferenceAcceleratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnInstancePropsMixin.ElasticInferenceAcceleratorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnInstancePropsMixin_ElasticInferenceAcceleratorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnInstancePropsMixin.ElasticInferenceAcceleratorProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnInstancePropsMixin.ElasticInferenceAcceleratorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnInstancePropsMixin » ElasticInferenceAcceleratorProperty |
Amazon Elastic Inference is no longer available.
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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const elasticInferenceAcceleratorProperty: ec2.CfnInstancePropsMixin.ElasticInferenceAcceleratorProperty = {
count: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| count? | number | The number of elastic inference accelerators to attach to the instance. |
| type? | string | The type of elastic inference accelerator. |
count?
Type:
number
(optional)
The number of elastic inference accelerators to attach to the instance.
type?
Type:
string
(optional)
The type of elastic inference accelerator.
The possible values are eia1.medium , eia1.large , eia1.xlarge , eia2.medium , eia2.large , and eia2.xlarge .

.NET
Go
Java
Python
TypeScript