Class: Aws::Appflow::Types::ServiceNowConnectorProfileCredentials

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 ServiceNow.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#o_auth_2_credentialsTypes::OAuth2Credentials

The OAuth 2.0 credentials required to authenticate the user.



4760
4761
4762
4763
4764
4765
4766
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4760

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

#passwordString

The password that corresponds to the user name.

Returns:

  • (String)


4760
4761
4762
4763
4764
4765
4766
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4760

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

#usernameString

The name of the user.

Returns:

  • (String)


4760
4761
4762
4763
4764
4765
4766
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4760

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