Class: Aws::Appflow::Types::SnowflakeConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SnowflakeConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass SnowflakeConnectorProfileCredentials data as a hash:
{
username: "Username", # required
password: "Password", # required
}
The connector-specific profile credentials required when using Snowflake.
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.
6023 6024 6025 6026 6027 6028 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6023 class SnowflakeConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The name of the user.
6023 6024 6025 6026 6027 6028 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6023 class SnowflakeConnectorProfileCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |