Class: Aws::Appflow::Types::VeevaConnectorProfileCredentials

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

Overview

The connector-specific profile credentials required when using Veeva.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password that corresponds to the user name.

Returns:

  • (String)


5855
5856
5857
5858
5859
5860
# File 'lib/aws-sdk-appflow/types.rb', line 5855

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

#usernameString

The name of the user.

Returns:

  • (String)


5855
5856
5857
5858
5859
5860
# File 'lib/aws-sdk-appflow/types.rb', line 5855

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