Class: Aws::MachineLearning::Types::RedshiftDatabase

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 RedshiftDatabase data as a hash:

{
  database_name: "RedshiftDatabaseName", # required
  cluster_identifier: "RedshiftClusterIdentifier", # required
}

Describes the database details required to connect to an Amazon Redshift database.

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_identifierString

The ID of an Amazon Redshift cluster.

Returns:

  • (String)


3425
3426
3427
3428
3429
# File 'lib/aws-sdk-machinelearning/types.rb', line 3425

class RedshiftDatabase < Struct.new(
  :database_name,
  :cluster_identifier)
  include Aws::Structure
end

#database_nameString

The name of a database hosted on an Amazon Redshift cluster.

Returns:

  • (String)


3425
3426
3427
3428
3429
# File 'lib/aws-sdk-machinelearning/types.rb', line 3425

class RedshiftDatabase < Struct.new(
  :database_name,
  :cluster_identifier)
  include Aws::Structure
end