Class: Aws::CodePipeline::Types::GitPushFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

The event criteria that specify when a specified repository event will start the pipeline for the specified trigger configuration, such as the lists of Git tags to include and exclude.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#branchesTypes::GitBranchFilterCriteria

The field that specifies to filter on branches for the push trigger configuration.



2282
2283
2284
2285
2286
2287
2288
# File 'lib/aws-sdk-codepipeline/types.rb', line 2282

class GitPushFilter < Struct.new(
  :tags,
  :branches,
  :file_paths)
  SENSITIVE = []
  include Aws::Structure
end

#file_pathsTypes::GitFilePathFilterCriteria

The field that specifies to filter on file paths for the push trigger configuration.



2282
2283
2284
2285
2286
2287
2288
# File 'lib/aws-sdk-codepipeline/types.rb', line 2282

class GitPushFilter < Struct.new(
  :tags,
  :branches,
  :file_paths)
  SENSITIVE = []
  include Aws::Structure
end

#tagsTypes::GitTagFilterCriteria

The field that contains the details for the Git tags trigger configuration.



2282
2283
2284
2285
2286
2287
2288
# File 'lib/aws-sdk-codepipeline/types.rb', line 2282

class GitPushFilter < Struct.new(
  :tags,
  :branches,
  :file_paths)
  SENSITIVE = []
  include Aws::Structure
end