Class: Aws::MachineLearning::Types::RDSDatabase

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#database_nameString

The name of a database hosted on an RDS DB instance.

Returns:

  • (String)


3089
3090
3091
3092
3093
# File 'lib/aws-sdk-machinelearning/types.rb', line 3089

class RDSDatabase < Struct.new(
  :instance_identifier,
  :database_name)
  include Aws::Structure
end

#instance_identifierString

The ID of an RDS DB instance.

Returns:

  • (String)


3089
3090
3091
3092
3093
# File 'lib/aws-sdk-machinelearning/types.rb', line 3089

class RDSDatabase < Struct.new(
  :instance_identifier,
  :database_name)
  include Aws::Structure
end