Class: Aws::QuickSight::Types::ReadAuthorizationCodeGrantDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ReadAuthorizationCodeGrantDetails
- 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
-
#authorization_endpoint ⇒ String
The authorization server endpoint used to obtain authorization codes from the resource owner.
-
#client_id ⇒ String
The client identifier for the OAuth2 authorization code grant flow.
-
#token_endpoint ⇒ String
The authorization server endpoint used to obtain access tokens via the authorization code grant flow.
Instance Attribute Details
#authorization_endpoint ⇒ String
The authorization server endpoint used to obtain authorization codes from the resource owner.
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_id ⇒ String
The client identifier for the OAuth2 authorization code grant flow.
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_endpoint ⇒ String
The authorization server endpoint used to obtain access tokens via the authorization code grant flow.
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 |