AWSMachineLearningRedshiftDatabaseCredentials
Objective-C
@interface AWSMachineLearningRedshiftDatabaseCredentials
Swift
class AWSMachineLearningRedshiftDatabaseCredentials
Describes the database credentials for connecting to a database on an Amazon Redshift cluster.
Required parameters: [Username, Password]
-
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.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable password;
Swift
var password: String? { get set }
-
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.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable username;
Swift
var username: String? { get set }