interface CreditSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnInstance.CreditSpecificationProperty |
Java | software.amazon.awscdk.services.ec2.CfnInstance.CreditSpecificationProperty |
Python | aws_cdk.aws_ec2.CfnInstance.CreditSpecificationProperty |
TypeScript | @aws-cdk/aws-ec2 » CfnInstance » CreditSpecificationProperty |
Specifies the credit option for CPU usage of a T instance.
CreditSpecification is a property of the AWS::EC2::Instance resource.
For more information, see Burstable performance instances in the Amazon EC2 User Guide .
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 creditSpecificationProperty: ec2.CfnInstance.CreditSpecificationProperty = {
cpuCredits: 'cpuCredits',
};
Properties
| Name | Type | Description |
|---|---|---|
| cpu | string | The credit option for CPU usage of the instance. |
cpuCredits?
Type:
string
(optional)
The credit option for CPU usage of the instance.
Valid values: standard | unlimited
T3 instances with host tenancy do not support the unlimited CPU credit option.

.NET
Java
Python
TypeScript