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