Class: Aws::CodePipeline::Types::GitFilePathFilterCriteria

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

Overview

The Git repository file paths specified as filter criteria to start the pipeline.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#excludesArray<String>

The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.

Returns:

  • (Array<String>)


2130
2131
2132
2133
2134
2135
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2130

class GitFilePathFilterCriteria < Struct.new(
  :includes,
  :excludes)
  SENSITIVE = []
  include Aws::Structure
end

#includesArray<String>

The list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.

Returns:

  • (Array<String>)


2130
2131
2132
2133
2134
2135
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2130

class GitFilePathFilterCriteria < Struct.new(
  :includes,
  :excludes)
  SENSITIVE = []
  include Aws::Structure
end