Class: Aws::Appflow::Types::RedshiftConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::RedshiftConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass RedshiftConnectorProfileCredentials data as a hash:
{
username: "Username", # required
password: "Password", # required
}
The connector-specific profile credentials required when using Amazon Redshift.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#password ⇒ String
The password that corresponds to the user name.
-
#username ⇒ String
The name of the user.
Instance Attribute Details
#password ⇒ String
The password that corresponds to the user name.
4950 4951 4952 4953 4954 4955 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4950 class RedshiftConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The name of the user.
4950 4951 4952 4953 4954 4955 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4950 class RedshiftConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |