Class: Aws::CodeBuild::Types::SourceAuth
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::SourceAuth
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
Information about the authorization settings for CodeBuild to access the source code to be built.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource value that applies to the specified authorization type.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authorization type to use.
 
Instance Attribute Details
#resource ⇒ String
The resource value that applies to the specified authorization type.
      5797 5798 5799 5800 5801 5802  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 5797 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.
      5797 5798 5799 5800 5801 5802  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 5797 class SourceAuth < Struct.new( :type, :resource) SENSITIVE = [] include Aws::Structure end  |