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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/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.



5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5940

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



5940
5941
5942
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5940

def unknown
  @unknown
end