Interface LFTag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LFTag.Builder,LFTag>,SdkBuilder<LFTag.Builder,LFTag>,SdkPojo
- Enclosing class:
- LFTag
public static interface LFTag.Builder extends SdkPojo, CopyableBuilder<LFTag.Builder,LFTag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LFTag.BuildertagKey(String tagKey)The key name for the LF-tag.LFTag.BuildertagValues(String... tagValues)A list of LF-tag values.LFTag.BuildertagValues(Collection<String> tagValues)A list of LF-tag values.-
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
-
tagKey
LFTag.Builder tagKey(String tagKey)
The key name for the LF-tag.
- Parameters:
tagKey- The key name for the LF-tag.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagValues
LFTag.Builder tagValues(Collection<String> tagValues)
A list of LF-tag values.
- Parameters:
tagValues- A list of LF-tag values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagValues
LFTag.Builder tagValues(String... tagValues)
A list of LF-tag values.
- Parameters:
tagValues- A list of LF-tag values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-