Class: Aws::CodeBuild::Types::ScopeConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::ScopeConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
Contains configuration information about the scope for a webhook.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #domain  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The domain of the GitHub Enterprise organization or the GitLab Self Managed group.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of either the group, enterprise, or organization that will send webhook events to CodeBuild, depending on the type of webhook.
 - 
  
    
      #scope  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of scope for a GitHub or GitLab webhook.
 
Instance Attribute Details
#domain ⇒ String
The domain of the GitHub Enterprise organization or the GitLab Self Managed group. Note that this parameter is only required if your project’s source type is GITHUB_ENTERPRISE or GITLAB_SELF_MANAGED.
      5775 5776 5777 5778 5779 5780 5781  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 5775 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of either the group, enterprise, or organization that will send webhook events to CodeBuild, depending on the type of webhook.
      5775 5776 5777 5778 5779 5780 5781  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 5775 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end  | 
  
#scope ⇒ String
The type of scope for a GitHub or GitLab webhook.
      5775 5776 5777 5778 5779 5780 5781  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 5775 class ScopeConfiguration < Struct.new( :name, :domain, :scope) SENSITIVE = [] include Aws::Structure end  |