Interface GitFilePathFilterCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GitFilePathFilterCriteria.Builder,GitFilePathFilterCriteria>,SdkBuilder<GitFilePathFilterCriteria.Builder,GitFilePathFilterCriteria>,SdkPojo
- Enclosing class:
- GitFilePathFilterCriteria
public static interface GitFilePathFilterCriteria.Builder extends SdkPojo, CopyableBuilder<GitFilePathFilterCriteria.Builder,GitFilePathFilterCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitFilePathFilterCriteria.Builderexcludes(String... excludes)The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.GitFilePathFilterCriteria.Builderexcludes(Collection<String> excludes)The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.GitFilePathFilterCriteria.Builderincludes(String... includes)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.GitFilePathFilterCriteria.Builderincludes(Collection<String> includes)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.-
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
GitFilePathFilterCriteria.Builder includes(Collection<String> includes)
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.
- Parameters:
includes- 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:
- Returns a reference to this object so that method calls can be chained together.
-
includes
GitFilePathFilterCriteria.Builder includes(String... includes)
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.
- Parameters:
includes- 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:
- Returns a reference to this object so that method calls can be chained together.
-
excludes
GitFilePathFilterCriteria.Builder excludes(Collection<String> excludes)
The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git repository file paths that, when a commit is 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
GitFilePathFilterCriteria.Builder excludes(String... excludes)
The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-