Class: Aws::Appflow::Types::OAuth2Properties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::OAuth2Properties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The OAuth 2.0 properties required for OAuth 2.0 authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#o_auth_2_grant_type ⇒ String
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
-
#token_url ⇒ String
The token URL required for OAuth 2.0 authentication.
-
#token_url_custom_properties ⇒ Hash<String,String>
Associates your token URL with a map of properties that you define.
Instance Attribute Details
#o_auth_2_grant_type ⇒ String
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
3441 3442 3443 3444 3445 3446 3447 |
# File 'lib/aws-sdk-appflow/types.rb', line 3441 class OAuth2Properties < Struct.new( :token_url, :o_auth_2_grant_type, :token_url_custom_properties) SENSITIVE = [] include Aws::Structure end |
#token_url ⇒ String
The token URL required for OAuth 2.0 authentication.
3441 3442 3443 3444 3445 3446 3447 |
# File 'lib/aws-sdk-appflow/types.rb', line 3441 class OAuth2Properties < Struct.new( :token_url, :o_auth_2_grant_type, :token_url_custom_properties) SENSITIVE = [] include Aws::Structure end |
#token_url_custom_properties ⇒ Hash<String,String>
Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.
3441 3442 3443 3444 3445 3446 3447 |
# File 'lib/aws-sdk-appflow/types.rb', line 3441 class OAuth2Properties < Struct.new( :token_url, :o_auth_2_grant_type, :token_url_custom_properties) SENSITIVE = [] include Aws::Structure end |