Class: Aws::Appflow::Types::OAuthProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::OAuthProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
The OAuth properties required for OAuth type authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auth_code_url ⇒ String
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
-
#o_auth_scopes ⇒ Array<String>
The OAuth scopes required for OAuth type authentication.
-
#token_url ⇒ String
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
Instance Attribute Details
#auth_code_url ⇒ String
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
3504 3505 3506 3507 3508 3509 3510 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504 class OAuthProperties < Struct.new( :token_url, :auth_code_url, :o_auth_scopes) SENSITIVE = [] include Aws::Structure end |
#o_auth_scopes ⇒ Array<String>
The OAuth scopes required for OAuth type authentication.
3504 3505 3506 3507 3508 3509 3510 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504 class OAuthProperties < Struct.new( :token_url, :auth_code_url, :o_auth_scopes) SENSITIVE = [] include Aws::Structure end |
#token_url ⇒ String
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
3504 3505 3506 3507 3508 3509 3510 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3504 class OAuthProperties < Struct.new( :token_url, :auth_code_url, :o_auth_scopes) SENSITIVE = [] include Aws::Structure end |