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.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, 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)
-
-