Interface EnumerationValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnumerationValue.Builder,EnumerationValue>,SdkBuilder<EnumerationValue.Builder,EnumerationValue>,SdkPojo
- Enclosing class:
- EnumerationValue
public static interface EnumerationValue.Builder extends SdkPojo, CopyableBuilder<EnumerationValue.Builder,EnumerationValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnumerationValue.Buildersynonyms(String... synonyms)Additional values related to the slot type value.EnumerationValue.Buildersynonyms(Collection<String> synonyms)Additional values related to the slot type value.EnumerationValue.Buildervalue(String value)The value of the slot type.-
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
-
value
EnumerationValue.Builder value(String value)
The value of the slot type.
- Parameters:
value- The value of the slot type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
synonyms
EnumerationValue.Builder synonyms(Collection<String> synonyms)
Additional values related to the slot type value.
- Parameters:
synonyms- Additional values related to the slot type value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
synonyms
EnumerationValue.Builder synonyms(String... synonyms)
Additional values related to the slot type value.
- Parameters:
synonyms- Additional values related to the slot type value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-