Class: Aws::CodePipeline::Types::GitTagFilterCriteria

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

Overview

The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#excludesArray<String>

The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.

Returns:

  • (Array<String>)


2209
2210
2211
2212
2213
2214
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2209

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

#includesArray<String>

The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.

Returns:

  • (Array<String>)


2209
2210
2211
2212
2213
2214
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2209

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