Class: Aws::EventBridge::Types::CreateConnectionOAuthClientRequestParameters
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EventBridge::Types::CreateConnectionOAuthClientRequestParameters
 
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
The Basic authorization parameters to use for the connection.
Constant Summary collapse
- SENSITIVE =
- [:client_secret] 
Instance Attribute Summary collapse
- 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The client ID to use for OAuth authorization for the connection. 
- 
  
    
      #client_secret  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The client secret associated with the client ID to use for OAuth authorization for the connection. 
Instance Attribute Details
#client_id ⇒ String
The client ID to use for OAuth authorization for the connection.
| 944 945 946 947 948 949 | # File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 944 class CreateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end | 
#client_secret ⇒ String
The client secret associated with the client ID to use for OAuth authorization for the connection.
| 944 945 946 947 948 949 | # File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 944 class CreateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |