Class: Aws::QuickSight::Types::ReadAuthorizationCodeGrantDetails

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

Overview

Read-only configuration details for OAuth2 authorization code grant flow, including endpoints and client information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_endpointString

The authorization server endpoint used to obtain authorization codes from the resource owner.

Returns:

  • (String)


28797
28798
28799
28800
28801
28802
28803
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28797

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

#client_idString

The client identifier for the OAuth2 authorization code grant flow.

Returns:

  • (String)


28797
28798
28799
28800
28801
28802
28803
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28797

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

#token_endpointString

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

Returns:

  • (String)


28797
28798
28799
28800
28801
28802
28803
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28797

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