Interface GitPushFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GitPushFilter.Builder,GitPushFilter>,SdkBuilder<GitPushFilter.Builder,GitPushFilter>,SdkPojo
- Enclosing class:
- GitPushFilter
public static interface GitPushFilter.Builder extends SdkPojo, CopyableBuilder<GitPushFilter.Builder,GitPushFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GitPushFilter.Builderbranches(Consumer<GitBranchFilterCriteria.Builder> branches)The field that specifies to filter on branches for the push trigger configuration.GitPushFilter.Builderbranches(GitBranchFilterCriteria branches)The field that specifies to filter on branches for the push trigger configuration.default GitPushFilter.BuilderfilePaths(Consumer<GitFilePathFilterCriteria.Builder> filePaths)The field that specifies to filter on file paths for the push trigger configuration.GitPushFilter.BuilderfilePaths(GitFilePathFilterCriteria filePaths)The field that specifies to filter on file paths for the push trigger configuration.default GitPushFilter.Buildertags(Consumer<GitTagFilterCriteria.Builder> tags)The field that contains the details for the Git tags trigger configuration.GitPushFilter.Buildertags(GitTagFilterCriteria tags)The field that contains the details for the Git tags trigger configuration.-
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
-
tags
GitPushFilter.Builder tags(GitTagFilterCriteria tags)
The field that contains the details for the Git tags trigger configuration.
- Parameters:
tags- The field that contains the details for the Git tags trigger configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
default GitPushFilter.Builder tags(Consumer<GitTagFilterCriteria.Builder> tags)
The field that contains the details for the Git tags trigger configuration.
This is a convenience method that creates an instance of theGitTagFilterCriteria.Builderavoiding the need to create one manually viaGitTagFilterCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totags(GitTagFilterCriteria).- Parameters:
tags- a consumer that will call methods onGitTagFilterCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tags(GitTagFilterCriteria)
-
branches
GitPushFilter.Builder branches(GitBranchFilterCriteria branches)
The field that specifies to filter on branches for the push trigger configuration.
- Parameters:
branches- The field that specifies to filter on branches for the push trigger configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
branches
default GitPushFilter.Builder branches(Consumer<GitBranchFilterCriteria.Builder> branches)
The field that specifies to filter on branches for the push trigger configuration.
This is a convenience method that creates an instance of theGitBranchFilterCriteria.Builderavoiding the need to create one manually viaGitBranchFilterCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobranches(GitBranchFilterCriteria).- Parameters:
branches- a consumer that will call methods onGitBranchFilterCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
branches(GitBranchFilterCriteria)
-
filePaths
GitPushFilter.Builder filePaths(GitFilePathFilterCriteria filePaths)
The field that specifies to filter on file paths for the push trigger configuration.
- Parameters:
filePaths- The field that specifies to filter on file paths for the push trigger configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filePaths
default GitPushFilter.Builder filePaths(Consumer<GitFilePathFilterCriteria.Builder> filePaths)
The field that specifies to filter on file paths for the push trigger configuration.
This is a convenience method that creates an instance of theGitFilePathFilterCriteria.Builderavoiding the need to create one manually viaGitFilePathFilterCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilePaths(GitFilePathFilterCriteria).- Parameters:
filePaths- a consumer that will call methods onGitFilePathFilterCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filePaths(GitFilePathFilterCriteria)
-
-