Class: Aws::Appflow::Types::SnowflakeConnectorProfileCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

The connector-specific profile credentials required when using Snowflake.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password that corresponds to the user name.

Returns:

  • (String)


4950
4951
4952
4953
4954
4955
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4950

class SnowflakeConnectorProfileCredentials < Struct.new(
  :username,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#usernameString

The name of the user.

Returns:

  • (String)


4950
4951
4952
4953
4954
4955
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4950

class SnowflakeConnectorProfileCredentials < Struct.new(
  :username,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end