How to manage Service Quotas (also referred to as limits in AWS Account) using AWS CLI commands

旧时模样 提交于 2020-01-19 04:10:28

问题


How can I manage my Service Quotas (also referred to as limits in AWS Account) using AWS CLI commands


回答1:


You simply search for a quota and put in your desired value to submit a quota increase request via Console or via AWS CLI .

You can find answers to your most of the queries with exmaples here on one of below links :

[+] Dev.to https://dev.to/dineshrathee12/manage-my-service-quotas-also-referred-to-as-limits-in-aws-account-using-aws-cli-commands-5cg2

[+] GitHub: https://github.com/dineshrathee12/Service-Quotas-Cli-with-aws/edit/master/README.md

In General:

AWS CLI commands to manage your limits i.e. "Service Quotas":

To work with Service Quotas via the CLI, you can utilize below commands (Short Description):

  • list-services : Lists the AWS services available in Service Quotas.
  • list-service-quotas : Lists all service quotas for the specified AWS service.
  • get-service-quota : Returns the details for the specified service quota.
  • request-service-quota-increase : Submits the details of a service quota increase request.
  • get-requested-service-quota-change : Retrieves the details for a particular increase request ( by mentioning the request id )
  • list-requested-service-quota-change-history : Requests a list of the changes to quotas for a service (if specified using --service-code) else, it returns all results respective to all services.
  • list-requested-service-quota-change-history-by-quota : Requests a list of the changes to specific service quotas.
  • list-aws-default-service-quotas : Lists all default service quotas for the specified AWS service or all AWS services. ListAWSDefaultServiceQuotas is similar to ListServiceQuotas except for the Value object. The Value object returned is the default value assigned by AWS. ( This command could be useful to check when list-service-quotas doesn't shows the Quota Code for some Service Codes - such as VPC in an example below - explained )

More allowed action details here on Service Quotas API Reference & AWS CLI Commands Reference.



来源:https://stackoverflow.com/questions/59545515/how-to-manage-service-quotas-also-referred-to-as-limits-in-aws-account-using-a

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!