Class: Aws::EC2::Types::CreditSpecificationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreditSpecificationRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass CreditSpecificationRequest data as a hash:
{
cpu_credits: "String", # required
}
The credit option for CPU usage of a T instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cpu_credits ⇒ String
The credit option for CPU usage of a T instance.
Instance Attribute Details
#cpu_credits ⇒ String
The credit option for CPU usage of a T instance.
Valid values: standard
| unlimited
14409 14410 14411 14412 14413 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 14409 class CreditSpecificationRequest < Struct.new( :cpu_credits) SENSITIVE = [] include Aws::Structure end |