Class: Aws::DatabaseMigrationService::Types::AccountQuota
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::AccountQuota
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Describes a quota for an Amazon Web Services account, for example the number of replication instances allowed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_quota_name ⇒ String
The name of the DMS quota for this Amazon Web Services account.
-
#max ⇒ Integer
The maximum allowed value for the quota.
-
#used ⇒ Integer
The amount currently used toward the quota maximum.
Instance Attribute Details
#account_quota_name ⇒ String
The name of the DMS quota for this Amazon Web Services account.
44 45 46 47 48 49 50 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 44 class AccountQuota < Struct.new( :account_quota_name, :used, :max) SENSITIVE = [] include Aws::Structure end |
#max ⇒ Integer
The maximum allowed value for the quota.
44 45 46 47 48 49 50 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 44 class AccountQuota < Struct.new( :account_quota_name, :used, :max) SENSITIVE = [] include Aws::Structure end |
#used ⇒ Integer
The amount currently used toward the quota maximum.
44 45 46 47 48 49 50 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 44 class AccountQuota < Struct.new( :account_quota_name, :used, :max) SENSITIVE = [] include Aws::Structure end |