Class: Aws::QuickSight::Types::OAuthClientCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

The OAuth 2.0 client credentials used for authenticating a data source connection. Use this structure to provide a client ID, client secret, and username directly instead of referencing a secret stored in Amazon Secrets Manager. This structure supports data sources that use two-legged OAuth (2LO) authentication, such as Snowflake.

Constant Summary collapse

SENSITIVE =
[:client_id, :client_secret, :username]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client ID of the OAuth 2.0 application that is registered with the data source provider.

Returns:

  • (String)


28902
28903
28904
28905
28906
28907
28908
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28902

class OAuthClientCredentials < Struct.new(
  :client_id,
  :client_secret,
  :username)
  SENSITIVE = [:client_id, :client_secret, :username]
  include Aws::Structure
end

#client_secretString

The client secret of the OAuth 2.0 application that is registered with the data source provider.

Returns:

  • (String)


28902
28903
28904
28905
28906
28907
28908
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28902

class OAuthClientCredentials < Struct.new(
  :client_id,
  :client_secret,
  :username)
  SENSITIVE = [:client_id, :client_secret, :username]
  include Aws::Structure
end

#usernameString

The username of the account that is used for OAuth 2.0 client credentials authentication with the data source provider.

Returns:

  • (String)


28902
28903
28904
28905
28906
28907
28908
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28902

class OAuthClientCredentials < Struct.new(
  :client_id,
  :client_secret,
  :username)
  SENSITIVE = [:client_id, :client_secret, :username]
  include Aws::Structure
end