Class: Aws::MachineLearning::Types::RedshiftDatabaseCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::RedshiftDatabaseCredentials
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Overview
Describes the database credentials for connecting to a database on an Amazon Redshift cluster.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#password ⇒ String
A password to be used by Amazon ML to connect to a database on an Amazon Redshift cluster.
-
#username ⇒ String
A username to be used by Amazon Machine Learning (Amazon ML)to connect to a database on an Amazon Redshift cluster.
Instance Attribute Details
#password ⇒ String
A password to be used by Amazon ML to connect to a database on an
Amazon Redshift cluster. The password should have sufficient
permissions to execute a RedshiftSelectSqlQuery
query. The
password should be valid for an Amazon Redshift USER.
3301 3302 3303 3304 3305 3306 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3301 class RedshiftDatabaseCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
A username to be used by Amazon Machine Learning (Amazon ML)to
connect to a database on an Amazon Redshift cluster. The username
should have sufficient permissions to execute the
RedshiftSelectSqlQuery
query. The username should be valid for an
Amazon Redshift USER.
3301 3302 3303 3304 3305 3306 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3301 class RedshiftDatabaseCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |