Class: Aws::EC2::Types::CreditSpecificationRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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 T2 or T3 instance.

Instance Attribute Summary collapse

Instance Attribute Details

#cpu_creditsString

The credit option for CPU usage of a T2 or T3 instance. Valid values are ‘standard` and `unlimited`.

Returns:

  • (String)


7587
7588
7589
7590
# File 'lib/aws-sdk-ec2/types.rb', line 7587

class CreditSpecificationRequest < Struct.new(
  :cpu_credits)
  include Aws::Structure
end