Interface InferenceOutputConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InferenceOutputConfiguration.Builder,
,InferenceOutputConfiguration> SdkBuilder<InferenceOutputConfiguration.Builder,
,InferenceOutputConfiguration> SdkPojo
- Enclosing class:
InferenceOutputConfiguration
@Mutable
@NotThreadSafe
public static interface InferenceOutputConfiguration.Builder
extends SdkPojo, CopyableBuilder<InferenceOutputConfiguration.Builder,InferenceOutputConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionThe MIME type used to specify the output data.members
(Collection<InferenceReceiverMember> members) Defines the members that can receive inference output.members
(Consumer<InferenceReceiverMember.Builder>... members) Defines the members that can receive inference output.members
(InferenceReceiverMember... members) Defines the members that can receive inference output.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
-
accept
The MIME type used to specify the output data.
- Parameters:
accept
- The MIME type used to specify the output data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
Defines the members that can receive inference output.
- Parameters:
members
- Defines the members that can receive inference output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
Defines the members that can receive inference output.
- Parameters:
members
- Defines the members that can receive inference output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
Defines the members that can receive inference output.
This is a convenience method that creates an instance of theInferenceReceiverMember.Builder
avoiding the need to create one manually viaInferenceReceiverMember.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomembers(List<InferenceReceiverMember>)
.- Parameters:
members
- a consumer that will call methods onInferenceReceiverMember.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-