Class: Aws::DatabaseMigrationService::Types::AccountQuota

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-databasemigrationservice/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

Instance Attribute Details

#account_quota_nameString

The name of the DMS quota for this Amazon Web Services account.

Returns:

  • (String)


44
45
46
47
48
49
50
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 44

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

#maxInteger

The maximum allowed value for the quota.

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 44

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

#usedInteger

The amount currently used toward the quota maximum.

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 44

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