Interface ColumnLFTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ColumnLFTag.Builder,ColumnLFTag>,SdkBuilder<ColumnLFTag.Builder,ColumnLFTag>,SdkPojo
- Enclosing class:
- ColumnLFTag
public static interface ColumnLFTag.Builder extends SdkPojo, CopyableBuilder<ColumnLFTag.Builder,ColumnLFTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnLFTag.BuilderlfTags(Collection<LFTagPair> lfTags)The LF-tags attached to a column resource.ColumnLFTag.BuilderlfTags(Consumer<LFTagPair.Builder>... lfTags)The LF-tags attached to a column resource.ColumnLFTag.BuilderlfTags(LFTagPair... lfTags)The LF-tags attached to a column resource.ColumnLFTag.Buildername(String name)The name of a column resource.-
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
-
name
ColumnLFTag.Builder name(String name)
The name of a column resource.
- Parameters:
name- The name of a column resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lfTags
ColumnLFTag.Builder lfTags(Collection<LFTagPair> lfTags)
The LF-tags attached to a column resource.
- Parameters:
lfTags- The LF-tags attached to a column resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lfTags
ColumnLFTag.Builder lfTags(LFTagPair... lfTags)
The LF-tags attached to a column resource.
- Parameters:
lfTags- The LF-tags attached to a column resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lfTags
ColumnLFTag.Builder lfTags(Consumer<LFTagPair.Builder>... lfTags)
The LF-tags attached to a column resource.
This is a convenience method that creates an instance of theLFTagPair.Builderavoiding the need to create one manually viaLFTagPair.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#lfTags(List.) - Parameters:
lfTags- a consumer that will call methods onLFTagPair.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#lfTags(java.util.Collection)
-
-