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 possible values an attribute can take.LFTag.BuildertagValues(Collection<String> tagValues)A list of possible values an attribute can take.-
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 possible values an attribute can take.
The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
- Parameters:
tagValues- A list of possible values an attribute can take.The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more 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 possible values an attribute can take.
The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
- Parameters:
tagValues- A list of possible values an attribute can take.The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-