Class: Aws::CodePipeline::Types::GitConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::GitConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
A type of trigger configuration for Git-based source actions.
<note markdown=“1”> You can specify the Git configuration trigger type for all third-party Git-based source actions that are supported by the ‘CodeStarSourceConnection` action type.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #pull_request  ⇒ Array<Types::GitPullRequestFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The field where the repository event that will start the pipeline is specified as pull requests.
 - 
  
    
      #push  ⇒ Array<Types::GitPushFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details.
 - 
  
    
      #source_action_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the pipeline source action where the trigger configuration, such as Git tags, is specified.
 
Instance Attribute Details
#pull_request ⇒ Array<Types::GitPullRequestFilter>
The field where the repository event that will start the pipeline is specified as pull requests.
      2240 2241 2242 2243 2244 2245 2246  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2240 class GitConfiguration < Struct.new( :source_action_name, :push, :pull_request) SENSITIVE = [] include Aws::Structure end  | 
  
#push ⇒ Array<Types::GitPushFilter>
The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details.
      2240 2241 2242 2243 2244 2245 2246  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2240 class GitConfiguration < Struct.new( :source_action_name, :push, :pull_request) SENSITIVE = [] include Aws::Structure end  | 
  
#source_action_name ⇒ String
The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only.
<note markdown=“1”> You can only specify one trigger configuration per source action.
</note>
  
      2240 2241 2242 2243 2244 2245 2246  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 2240 class GitConfiguration < Struct.new( :source_action_name, :push, :pull_request) SENSITIVE = [] include Aws::Structure end  |