Interface GitBranchFilterCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GitBranchFilterCriteria.Builder,GitBranchFilterCriteria>,SdkBuilder<GitBranchFilterCriteria.Builder,GitBranchFilterCriteria>,SdkPojo
- Enclosing class:
- GitBranchFilterCriteria
public static interface GitBranchFilterCriteria.Builder extends SdkPojo, CopyableBuilder<GitBranchFilterCriteria.Builder,GitBranchFilterCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GitBranchFilterCriteria.Builderexcludes(String... excludes)The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.GitBranchFilterCriteria.Builderexcludes(Collection<String> excludes)The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.GitBranchFilterCriteria.Builderincludes(String... includes)The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.GitBranchFilterCriteria.Builderincludes(Collection<String> includes)The list of patterns of Git branches 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
GitBranchFilterCriteria.Builder includes(Collection<String> includes)
The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
- Parameters:
includes- The list of patterns of Git branches 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
GitBranchFilterCriteria.Builder includes(String... includes)
The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
- Parameters:
includes- The list of patterns of Git branches 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
GitBranchFilterCriteria.Builder excludes(Collection<String> excludes)
The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git branches 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
GitBranchFilterCriteria.Builder excludes(String... excludes)
The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
- Parameters:
excludes- The list of patterns of Git branches 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.
-
-