Class: Aws::Appflow::Types::OAuthCredentials
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Appflow::Types::OAuthCredentials
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The OAuth credentials required for OAuth type authentication.
Constant Summary collapse
- SENSITIVE =
- [:client_secret, :access_token] 
Instance Attribute Summary collapse
- 
  
    
      #access_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The access token used to access protected SAPOData resources. 
- 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier for the desired client. 
- 
  
    
      #client_secret  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The client secret used by the OAuth client to authenticate to the authorization server. 
- 
  
    
      #o_auth_request  ⇒ Types::ConnectorOAuthRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The OAuth requirement needed to request security tokens from the connector endpoint. 
- 
  
    
      #refresh_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The refresh token used to refresh expired access token. 
Instance Attribute Details
#access_token ⇒ String
The access token used to access protected SAPOData resources.
| 3475 3476 3477 3478 3479 3480 3481 3482 3483 | # File 'lib/aws-sdk-appflow/types.rb', line 3475 class OAuthCredentials < Struct.new( :client_id, :client_secret, :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end | 
#client_id ⇒ String
The identifier for the desired client.
| 3475 3476 3477 3478 3479 3480 3481 3482 3483 | # File 'lib/aws-sdk-appflow/types.rb', line 3475 class OAuthCredentials < Struct.new( :client_id, :client_secret, :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end | 
#client_secret ⇒ String
The client secret used by the OAuth client to authenticate to the authorization server.
| 3475 3476 3477 3478 3479 3480 3481 3482 3483 | # File 'lib/aws-sdk-appflow/types.rb', line 3475 class OAuthCredentials < Struct.new( :client_id, :client_secret, :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end | 
#o_auth_request ⇒ Types::ConnectorOAuthRequest
The OAuth requirement needed to request security tokens from the connector endpoint.
| 3475 3476 3477 3478 3479 3480 3481 3482 3483 | # File 'lib/aws-sdk-appflow/types.rb', line 3475 class OAuthCredentials < Struct.new( :client_id, :client_secret, :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end | 
#refresh_token ⇒ String
The refresh token used to refresh expired access token.
| 3475 3476 3477 3478 3479 3480 3481 3482 3483 | # File 'lib/aws-sdk-appflow/types.rb', line 3475 class OAuthCredentials < Struct.new( :client_id, :client_secret, :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end |