Class: Aws::OpsWorksCM::Types::AccountAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorksCM::Types::AccountAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworkscm/types.rb
Overview
Stores account attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum ⇒ Integer
The maximum allowed value.
-
#name ⇒ String
The attribute name.
-
#used ⇒ Integer
The current usage, such as the current number of servers that are associated with the account.
Instance Attribute Details
#maximum ⇒ Integer
The maximum allowed value.
37 38 39 40 41 42 43 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 37 class AccountAttribute < Struct.new( :name, :maximum, :used) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The attribute name. The following are supported attribute names.
-
ServerLimit: The number of current servers/maximum number of servers allowed. By default, you can have a maximum of 10 servers.
-
ManualBackupLimit: The number of current manual backups/maximum number of backups allowed. By default, you can have a maximum of 50 manual backups saved.
37 38 39 40 41 42 43 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 37 class AccountAttribute < Struct.new( :name, :maximum, :used) SENSITIVE = [] include Aws::Structure end |
#used ⇒ Integer
The current usage, such as the current number of servers that are associated with the account.
37 38 39 40 41 42 43 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 37 class AccountAttribute < Struct.new( :name, :maximum, :used) SENSITIVE = [] include Aws::Structure end |