Class: Aws::RDS::Types::AccountQuota

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Describes a quota for an AWS account, for example, the number of DB instances allowed.

Instance Attribute Summary collapse

Instance Attribute Details

#account_quota_nameString

The name of the Amazon RDS quota for this AWS account.

Returns:

  • (String)


43
44
45
46
47
48
# File 'lib/aws-sdk-rds/types.rb', line 43

class AccountQuota < Struct.new(
  :account_quota_name,
  :used,
  :max)
  include Aws::Structure
end

#maxInteger

The maximum allowed value for the quota.

Returns:

  • (Integer)


43
44
45
46
47
48
# File 'lib/aws-sdk-rds/types.rb', line 43

class AccountQuota < Struct.new(
  :account_quota_name,
  :used,
  :max)
  include Aws::Structure
end

#usedInteger

The amount currently used toward the quota maximum.

Returns:

  • (Integer)


43
44
45
46
47
48
# File 'lib/aws-sdk-rds/types.rb', line 43

class AccountQuota < Struct.new(
  :account_quota_name,
  :used,
  :max)
  include Aws::Structure
end