Interface AutomatedReasoningCheckTranslationOption.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AutomatedReasoningCheckTranslationOption.Builder,
,AutomatedReasoningCheckTranslationOption> SdkBuilder<AutomatedReasoningCheckTranslationOption.Builder,
,AutomatedReasoningCheckTranslationOption> SdkPojo
- Enclosing class:
AutomatedReasoningCheckTranslationOption
@Mutable
@NotThreadSafe
public static interface AutomatedReasoningCheckTranslationOption.Builder
extends SdkPojo, CopyableBuilder<AutomatedReasoningCheckTranslationOption.Builder,AutomatedReasoningCheckTranslationOption>
-
Method Summary
Modifier and TypeMethodDescriptiontranslations
(Collection<AutomatedReasoningCheckTranslation> translations) Different logical interpretations that were detected during translation of the input.translations
(Consumer<AutomatedReasoningCheckTranslation.Builder>... translations) Different logical interpretations that were detected during translation of the input.translations
(AutomatedReasoningCheckTranslation... translations) Different logical interpretations that were detected during translation of the input.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 Details
-
translations
AutomatedReasoningCheckTranslationOption.Builder translations(Collection<AutomatedReasoningCheckTranslation> translations) Different logical interpretations that were detected during translation of the input.
- Parameters:
translations
- Different logical interpretations that were detected during translation of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
translations
AutomatedReasoningCheckTranslationOption.Builder translations(AutomatedReasoningCheckTranslation... translations) Different logical interpretations that were detected during translation of the input.
- Parameters:
translations
- Different logical interpretations that were detected during translation of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
translations
AutomatedReasoningCheckTranslationOption.Builder translations(Consumer<AutomatedReasoningCheckTranslation.Builder>... translations) Different logical interpretations that were detected during translation of the input.
This is a convenience method that creates an instance of theAutomatedReasoningCheckTranslation.Builder
avoiding the need to create one manually viaAutomatedReasoningCheckTranslation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totranslations(List<AutomatedReasoningCheckTranslation>)
.- Parameters:
translations
- a consumer that will call methods onAutomatedReasoningCheckTranslation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-