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