Class: Aws::MachineLearning::Types::RedshiftDatabase
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::RedshiftDatabase
- 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
-
#cluster_identifier ⇒ String
The ID of an Amazon Redshift cluster.
-
#database_name ⇒ String
The name of a database hosted on an Amazon Redshift cluster.
Instance Attribute Details
#cluster_identifier ⇒ String
The ID of an Amazon Redshift cluster.
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_name ⇒ String
The name of a database hosted on an Amazon Redshift cluster.
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 |