Class: Aws::Glue::Types::OAuth2Properties

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

A structure containing properties for OAuth2 authentication.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#o_auth_2_client_applicationTypes::OAuth2ClientApplication

The client application type. For example, AWS_MANAGED or USER_MANAGED.



17229
17230
17231
17232
17233
17234
17235
17236
# File 'lib/aws-sdk-glue/types.rb', line 17229

class OAuth2Properties < Struct.new(
  :o_auth_2_grant_type,
  :o_auth_2_client_application,
  :token_url,
  :token_url_parameters_map)
  SENSITIVE = []
  include Aws::Structure
end

#o_auth_2_grant_typeString

The OAuth2 grant type. For example, ‘AUTHORIZATION_CODE`, `JWT_BEARER`, or `CLIENT_CREDENTIALS`.

Returns:

  • (String)


17229
17230
17231
17232
17233
17234
17235
17236
# File 'lib/aws-sdk-glue/types.rb', line 17229

class OAuth2Properties < Struct.new(
  :o_auth_2_grant_type,
  :o_auth_2_client_application,
  :token_url,
  :token_url_parameters_map)
  SENSITIVE = []
  include Aws::Structure
end

#token_urlString

The URL of the provider’s authentication server, to exchange an authorization code for an access token.

Returns:

  • (String)


17229
17230
17231
17232
17233
17234
17235
17236
# File 'lib/aws-sdk-glue/types.rb', line 17229

class OAuth2Properties < Struct.new(
  :o_auth_2_grant_type,
  :o_auth_2_client_application,
  :token_url,
  :token_url_parameters_map)
  SENSITIVE = []
  include Aws::Structure
end

#token_url_parameters_mapHash<String,String>

A map of parameters that are added to the token ‘GET` request.

Returns:

  • (Hash<String,String>)


17229
17230
17231
17232
17233
17234
17235
17236
# File 'lib/aws-sdk-glue/types.rb', line 17229

class OAuth2Properties < Struct.new(
  :o_auth_2_grant_type,
  :o_auth_2_client_application,
  :token_url,
  :token_url_parameters_map)
  SENSITIVE = []
  include Aws::Structure
end