Class: Aws::Odb::Types::DbIormConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Odb::Types::DbIormConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-odb/types.rb
Overview
The IORM configuration settings for the database.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_name ⇒ String
The database name.
-
#flash_cache_limit ⇒ String
The flash cache limit for this database.
-
#share ⇒ Integer
The relative priority of this database.
Instance Attribute Details
#db_name ⇒ String
The database name. For the default DbPlan, the dbName is ‘default`.
4901 4902 4903 4904 4905 4906 4907 |
# File 'lib/aws-sdk-odb/types.rb', line 4901 class DbIormConfig < Struct.new( :db_name, :flash_cache_limit, :share) SENSITIVE = [] include Aws::Structure end |
#flash_cache_limit ⇒ String
The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
4901 4902 4903 4904 4905 4906 4907 |
# File 'lib/aws-sdk-odb/types.rb', line 4901 class DbIormConfig < Struct.new( :db_name, :flash_cache_limit, :share) SENSITIVE = [] include Aws::Structure end |
#share ⇒ Integer
The relative priority of this database.
4901 4902 4903 4904 4905 4906 4907 |
# File 'lib/aws-sdk-odb/types.rb', line 4901 class DbIormConfig < Struct.new( :db_name, :flash_cache_limit, :share) SENSITIVE = [] include Aws::Structure end |