Class: Aws::Appflow::Types::HoneycodeConnectorProfileCredentials
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Appflow::Types::HoneycodeConnectorProfileCredentials
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific credentials required when using Amazon Honeycode.
Constant Summary collapse
- SENSITIVE =
- [:access_token] 
Instance Attribute Summary collapse
- 
  
    
      #access_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The credentials used to access protected Amazon Honeycode resources. 
- 
  
    
      #o_auth_request  ⇒ Types::ConnectorOAuthRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
- 
  
    
      #refresh_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The credentials used to acquire new access tokens. 
Instance Attribute Details
#access_token ⇒ String
The credentials used to access protected Amazon Honeycode resources.
| 2809 2810 2811 2812 2813 2814 2815 | # File 'lib/aws-sdk-appflow/types.rb', line 2809 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end | 
#o_auth_request ⇒ Types::ConnectorOAuthRequest
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
| 2809 2810 2811 2812 2813 2814 2815 | # File 'lib/aws-sdk-appflow/types.rb', line 2809 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end | 
#refresh_token ⇒ String
The credentials used to acquire new access tokens.
| 2809 2810 2811 2812 2813 2814 2815 | # File 'lib/aws-sdk-appflow/types.rb', line 2809 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end |