Class: Aws::CodePipeline::Types::PipelineTriggerDeclaration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::PipelineTriggerDeclaration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Represents information about the specified trigger configuration, such as the filter criteria and the source stage for the action that contains the trigger.
<note markdown=“1”> This is only supported for the ‘CodeStarSourceConnection` action type.
</note>
<note markdown=“1”> When a trigger configuration is specified, default change detection for repository and branch commits is disabled.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #git_configuration  ⇒ Types::GitConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the filter criteria and the source stage for the repository event that starts the pipeline, such as Git tags.
 - 
  
    
      #provider_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source provider for the event, such as connections configured for a repository with Git tags, for the specified trigger configuration.
 
Instance Attribute Details
#git_configuration ⇒ Types::GitConfiguration
Provides the filter criteria and the source stage for the repository event that starts the pipeline, such as Git tags.
      3725 3726 3727 3728 3729 3730  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3725 class PipelineTriggerDeclaration < Struct.new( :provider_type, :git_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#provider_type ⇒ String
The source provider for the event, such as connections configured for a repository with Git tags, for the specified trigger configuration.
      3725 3726 3727 3728 3729 3730  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3725 class PipelineTriggerDeclaration < Struct.new( :provider_type, :git_configuration) SENSITIVE = [] include Aws::Structure end  |