interface ElasticGpuSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnInstance.ElasticGpuSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstance_ElasticGpuSpecificationProperty |
Java | software.amazon.awscdk.services.ec2.CfnInstance.ElasticGpuSpecificationProperty |
Python | aws_cdk.aws_ec2.CfnInstance.ElasticGpuSpecificationProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnInstance » ElasticGpuSpecificationProperty |
Amazon Elastic Graphics reached end of life on January 8, 2024.
Specifies the type of Elastic GPU. An Elastic GPU is a GPU resource that you can attach to your Amazon EC2 instance to accelerate the graphics performance of your applications.
ElasticGpuSpecification 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-lib';
const elasticGpuSpecificationProperty: ec2.CfnInstance.ElasticGpuSpecificationProperty = {
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of Elastic Graphics accelerator. |
type
Type:
string
The type of Elastic Graphics accelerator.

.NET
Go
Java
Python
TypeScript