Class: Aws::CodeCommit::Types::PutRepositoryTriggersInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::PutRepositoryTriggersInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Represents the input of a put repository triggers operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository where you want to create or update the trigger.
 - 
  
    
      #triggers  ⇒ Array<Types::RepositoryTrigger> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The JSON block of configuration information for each trigger.
 
Instance Attribute Details
#repository_name ⇒ String
The name of the repository where you want to create or update the trigger.
      6067 6068 6069 6070 6071 6072  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6067 class PutRepositoryTriggersInput < Struct.new( :repository_name, :triggers) SENSITIVE = [] include Aws::Structure end  | 
  
#triggers ⇒ Array<Types::RepositoryTrigger>
The JSON block of configuration information for each trigger.
      6067 6068 6069 6070 6071 6072  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6067 class PutRepositoryTriggersInput < Struct.new( :repository_name, :triggers) SENSITIVE = [] include Aws::Structure end  |