Class: Aws::Appflow::Types::SlackConnectorProfileCredentials
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Appflow::Types::SlackConnectorProfileCredentials
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appflow/types.rb
 
Overview
The connector-specific profile credentials required when using Slack.
Constant Summary collapse
- SENSITIVE =
 [:client_secret, :access_token]
Instance Attribute Summary collapse
- 
  
    
      #access_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The credentials used to access protected Slack resources.
 - 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier for the 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.
 
Instance Attribute Details
#access_token ⇒ String
The credentials used to access protected Slack resources.
      4886 4887 4888 4889 4890 4891 4892 4893  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 4886 class SlackConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end  | 
  
#client_id ⇒ String
The identifier for the client.
      4886 4887 4888 4889 4890 4891 4892 4893  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 4886 class SlackConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_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.
      4886 4887 4888 4889 4890 4891 4892 4893  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 4886 class SlackConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_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.
      4886 4887 4888 4889 4890 4891 4892 4893  | 
    
      # File 'lib/aws-sdk-appflow/types.rb', line 4886 class SlackConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end  |