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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


30696
30697
30698
30699
30700
30701
# File 'lib/aws-sdk-quicksight/types.rb', line 30696

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)


30696
30697
30698
30699
30700
30701
# File 'lib/aws-sdk-quicksight/types.rb', line 30696

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