Class: Aws::Odb::Types::DbIormConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb

Overview

The IORM configuration settings for the database.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_nameString

The database name. For the default DbPlan, the dbName is default.

Returns:

  • (String)


2457
2458
2459
2460
2461
2462
2463
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 2457

class DbIormConfig < Struct.new(
  :db_name,
  :flash_cache_limit,
  :share)
  SENSITIVE = []
  include Aws::Structure
end

#flash_cache_limitString

The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.

Returns:

  • (String)


2457
2458
2459
2460
2461
2462
2463
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 2457

class DbIormConfig < Struct.new(
  :db_name,
  :flash_cache_limit,
  :share)
  SENSITIVE = []
  include Aws::Structure
end

#shareInteger

The relative priority of this database.

Returns:

  • (Integer)


2457
2458
2459
2460
2461
2462
2463
# File 'gems/aws-sdk-odb/lib/aws-sdk-odb/types.rb', line 2457

class DbIormConfig < Struct.new(
  :db_name,
  :flash_cache_limit,
  :share)
  SENSITIVE = []
  include Aws::Structure
end