Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
awscli / awscli / examples / ec2 / describe-instance-credit-specifications.rst
Size: Mime:
**To describe the credit option for CPU usage of one or more instances**

This example describes the current credit option for CPU usage of the specified instance.

Command::

  aws ec2 describe-instance-credit-specifications --instance-id i-1234567890abcdef0

Output::

  {
    "InstanceCreditSpecifications": [
      {
          "InstanceId": "i-1234567890abcdef0",
          "CpuCredits": "unlimited"
      }
    ]
  }