Class: Aws::Appflow::Types::RedshiftConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::RedshiftConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
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.
3692 3693 3694 3695 3696 3697 |
# File 'lib/aws-sdk-appflow/types.rb', line 3692 class RedshiftConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The name of the user.
3692 3693 3694 3695 3696 3697 |
# File 'lib/aws-sdk-appflow/types.rb', line 3692 class RedshiftConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |