Interface SlotTypeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SlotTypeValue.Builder,SlotTypeValue>,SdkBuilder<SlotTypeValue.Builder,SlotTypeValue>,SdkPojo
- Enclosing class:
- SlotTypeValue
public static interface SlotTypeValue.Builder extends SdkPojo, CopyableBuilder<SlotTypeValue.Builder,SlotTypeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SlotTypeValue.BuildersampleValue(Consumer<SampleValue.Builder> sampleValue)The value of the slot type entry.SlotTypeValue.BuildersampleValue(SampleValue sampleValue)The value of the slot type entry.SlotTypeValue.Buildersynonyms(Collection<SampleValue> synonyms)Additional values related to the slot type entry.SlotTypeValue.Buildersynonyms(Consumer<SampleValue.Builder>... synonyms)Additional values related to the slot type entry.SlotTypeValue.Buildersynonyms(SampleValue... synonyms)Additional values related to the slot type entry.-
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
-
sampleValue
SlotTypeValue.Builder sampleValue(SampleValue sampleValue)
The value of the slot type entry.
- Parameters:
sampleValue- The value of the slot type entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sampleValue
default SlotTypeValue.Builder sampleValue(Consumer<SampleValue.Builder> sampleValue)
The value of the slot type entry.
This is a convenience method that creates an instance of theSampleValue.Builderavoiding the need to create one manually viaSampleValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosampleValue(SampleValue).- Parameters:
sampleValue- a consumer that will call methods onSampleValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sampleValue(SampleValue)
-
synonyms
SlotTypeValue.Builder synonyms(Collection<SampleValue> synonyms)
Additional values related to the slot type entry.
- Parameters:
synonyms- Additional values related to the slot type entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
synonyms
SlotTypeValue.Builder synonyms(SampleValue... synonyms)
Additional values related to the slot type entry.
- Parameters:
synonyms- Additional values related to the slot type entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
synonyms
SlotTypeValue.Builder synonyms(Consumer<SampleValue.Builder>... synonyms)
Additional values related to the slot type entry.
This is a convenience method that creates an instance of theSampleValue.Builderavoiding the need to create one manually viaSampleValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#synonyms(List.) - Parameters:
synonyms- a consumer that will call methods onSampleValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#synonyms(java.util.Collection)
-
-