Class: Aws::Glue::Types::OAuth2Properties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::OAuth2Properties
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
A structure containing properties for OAuth2 authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#o_auth_2_client_application ⇒ Types::OAuth2ClientApplication
The client application type.
-
#o_auth_2_grant_type ⇒ String
The OAuth2 grant type.
-
#token_url ⇒ String
The URL of the provider's authentication server, to exchange an authorization code for an access token.
-
#token_url_parameters_map ⇒ Hash<String,String>
A map of parameters that are added to the token
GET
request.
Instance Attribute Details
#o_auth_2_client_application ⇒ Types::OAuth2ClientApplication
The client application type. For example, AWS_MANAGED or USER_MANAGED.
19759 19760 19761 19762 19763 19764 19765 19766 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19759 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_type ⇒ String
The OAuth2 grant type. For example, AUTHORIZATION_CODE
,
JWT_BEARER
, or CLIENT_CREDENTIALS
.
19759 19760 19761 19762 19763 19764 19765 19766 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19759 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 ⇒ String
The URL of the provider's authentication server, to exchange an authorization code for an access token.
19759 19760 19761 19762 19763 19764 19765 19766 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19759 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_map ⇒ Hash<String,String>
A map of parameters that are added to the token GET
request.
19759 19760 19761 19762 19763 19764 19765 19766 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19759 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 |