Class: Aws::Appflow::Types::ServiceNowConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ServiceNowConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific profile credentials required when using ServiceNow.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#o_auth_2_credentials ⇒ Types::OAuth2Credentials
The OAuth 2.0 credentials required to authenticate the user.
-
#password ⇒ String
The password that corresponds to the user name.
-
#username ⇒ String
The name of the user.
Instance Attribute Details
#o_auth_2_credentials ⇒ Types::OAuth2Credentials
The OAuth 2.0 credentials required to authenticate the user.
4754 4755 4756 4757 4758 4759 4760 |
# File 'lib/aws-sdk-appflow/types.rb', line 4754 class ServiceNowConnectorProfileCredentials < Struct.new( :username, :password, :o_auth_2_credentials) SENSITIVE = [:password] include Aws::Structure end |
#password ⇒ String
The password that corresponds to the user name.
4754 4755 4756 4757 4758 4759 4760 |
# File 'lib/aws-sdk-appflow/types.rb', line 4754 class ServiceNowConnectorProfileCredentials < Struct.new( :username, :password, :o_auth_2_credentials) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The name of the user.
4754 4755 4756 4757 4758 4759 4760 |
# File 'lib/aws-sdk-appflow/types.rb', line 4754 class ServiceNowConnectorProfileCredentials < Struct.new( :username, :password, :o_auth_2_credentials) SENSITIVE = [:password] include Aws::Structure end |