Class: Aws::QuickSight::Types::AuthorizationCodeGrantDetails

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

Overview

Configuration details for OAuth 2.0 authorization code grant flow.

Constant Summary collapse

SENSITIVE =
[:client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_endpointString

The authorization endpoint URL for the OAuth flow.

Returns:

  • (String)


2916
2917
2918
2919
2920
2921
2922
2923
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2916

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

#client_idString

The client ID for the OAuth application.

Returns:

  • (String)


2916
2917
2918
2919
2920
2921
2922
2923
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2916

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

#client_secretString

The client secret for the OAuth application.

Returns:

  • (String)


2916
2917
2918
2919
2920
2921
2922
2923
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2916

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

#token_endpointString

The token endpoint URL for obtaining access tokens.

Returns:

  • (String)


2916
2917
2918
2919
2920
2921
2922
2923
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2916

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