Class: Aws::MachineLearning::Types::RDSDatabase
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::RDSDatabase
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Note:
When making an API call, you may pass RDSDatabase data as a hash:
{
instance_identifier: "RDSInstanceIdentifier", # required
database_name: "RDSDatabaseName", # required
}
The database details of an Amazon RDS database.
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name of a database hosted on an RDS DB instance.
-
#instance_identifier ⇒ String
The ID of an RDS DB instance.
Instance Attribute Details
#database_name ⇒ String
The name of a database hosted on an RDS DB instance.
3168 3169 3170 3171 3172 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3168 class RDSDatabase < Struct.new( :instance_identifier, :database_name) include Aws::Structure end |
#instance_identifier ⇒ String
The ID of an RDS DB instance.
3168 3169 3170 3171 3172 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3168 class RDSDatabase < Struct.new( :instance_identifier, :database_name) include Aws::Structure end |