Class: Aws::QuickSight::Types::ClientCredentialsDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

Note:

ClientCredentialsDetails is a union - when making an API calls you must set exactly one of the members.

Details for OAuth 2.0 client credentials grant authentication.

Direct Known Subclasses

ClientCredentialsGrantDetails, Unknown

Defined Under Namespace

Classes: ClientCredentialsGrantDetails, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_credentials_grant_detailsTypes::ClientCredentialsGrantDetails

The OAuth2 client credentials grant configuration details for authentication.



5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
# File 'lib/aws-sdk-quicksight/types.rb', line 5067

class ClientCredentialsDetails < Struct.new(
  :client_credentials_grant_details,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ClientCredentialsGrantDetails < ClientCredentialsDetails; end
  class Unknown < ClientCredentialsDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5067
5068
5069
# File 'lib/aws-sdk-quicksight/types.rb', line 5067

def unknown
  @unknown
end