Class: Aws::QuickSight::Types::ReadClientCredentialsGrantDetails

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

Overview

Read-only configuration details for OAuth2 client credentials grant flow, including client ID and token endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client identifier for the OAuth2 client credentials grant flow.

Returns:

  • (String)


28893
28894
28895
28896
28897
28898
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28893

class ReadClientCredentialsGrantDetails < Struct.new(
  :client_id,
  :token_endpoint)
  SENSITIVE = []
  include Aws::Structure
end

#token_endpointString

The authorization server endpoint used to obtain access tokens via the client credentials grant flow.

Returns:

  • (String)


28893
28894
28895
28896
28897
28898
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28893

class ReadClientCredentialsGrantDetails < Struct.new(
  :client_id,
  :token_endpoint)
  SENSITIVE = []
  include Aws::Structure
end