Interface GitTagFilterCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GitTagFilterCriteria.Builder,GitTagFilterCriteria>,SdkBuilder<GitTagFilterCriteria.Builder,GitTagFilterCriteria>,SdkPojo
- Enclosing class:
- GitTagFilterCriteria
public static interface GitTagFilterCriteria.Builder extends SdkPojo, CopyableBuilder<GitTagFilterCriteria.Builder,GitTagFilterCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitTagFilterCriteria.Builderexcludes(String... excludes)The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.GitTagFilterCriteria.Builderexcludes(Collection<String> excludes)The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.GitTagFilterCriteria.Builderincludes(String... includes)The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.GitTagFilterCriteria.Builderincludes(Collection<String> includes)The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
includes
GitTagFilterCriteria.Builder includes(Collection<String> includes)
The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
- Parameters:
includes- The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
includes
GitTagFilterCriteria.Builder includes(String... includes)
The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
- Parameters:
includes- The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludes
GitTagFilterCriteria.Builder excludes(Collection<String> excludes)
The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludes
GitTagFilterCriteria.Builder excludes(String... excludes)
The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-