Class: Aws::RDS::Types::DeleteCustomDBEngineVersionMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteCustomDBEngineVersionMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine ⇒ String
The database engine.
-
#engine_version ⇒ String
The custom engine version (CEV) for your DB instance.
Instance Attribute Details
#engine ⇒ String
The database engine. The only supported engines are
custom-oracle-ee
and custom-oracle-ee-cdb
.
9660 9661 9662 9663 9664 9665 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 9660 class DeleteCustomDBEngineVersionMessage < Struct.new( :engine, :engine_version) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The custom engine version (CEV) for your DB instance. This option is
required for RDS Custom, but optional for Amazon RDS. The
combination of Engine
and EngineVersion
is unique per customer
per Amazon Web Services Region.
9660 9661 9662 9663 9664 9665 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 9660 class DeleteCustomDBEngineVersionMessage < Struct.new( :engine, :engine_version) SENSITIVE = [] include Aws::Structure end |