我广泛使用 AWS,并且经常要求他们增加我们账户的限制。我想知道在它发生之前我即将达到极限,
EC2 和 IAM 的限制很简单:
ec2_acc = AWS::EC2::Client.new(region: "us-east-1")
atr = ec2_acc.describe_account_attributes[:account_attribute_set] # includes limits
iam = AWS::IAM.new
iam_acc = iam.account_summary # description includes limits
任何人都知道如何获得以下限制:RDS、EBS、EC2::ELB?
谢谢