Interface InferenceOutputConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InferenceOutputConfiguration.Builder,InferenceOutputConfiguration>,SdkBuilder<InferenceOutputConfiguration.Builder,InferenceOutputConfiguration>,SdkPojo
- Enclosing class:
- InferenceOutputConfiguration
public static interface InferenceOutputConfiguration.Builder extends SdkPojo, CopyableBuilder<InferenceOutputConfiguration.Builder,InferenceOutputConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InferenceOutputConfiguration.Builderaccept(String accept)The MIME type used to specify the output data.InferenceOutputConfiguration.Buildermembers(Collection<InferenceReceiverMember> members)Defines the members that can receive inference output.InferenceOutputConfiguration.Buildermembers(Consumer<InferenceReceiverMember.Builder>... members)Defines the members that can receive inference output.InferenceOutputConfiguration.Buildermembers(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 Detail
-
accept
InferenceOutputConfiguration.Builder accept(String 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
InferenceOutputConfiguration.Builder members(Collection<InferenceReceiverMember> 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
InferenceOutputConfiguration.Builder members(InferenceReceiverMember... 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
InferenceOutputConfiguration.Builder members(Consumer<InferenceReceiverMember.Builder>... members)
Defines the members that can receive inference output.
This is a convenience method that creates an instance of theInferenceReceiverMember.Builderavoiding the need to create one manually viaInferenceReceiverMember.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#members(List.) - 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:
#members(java.util.Collection)
-
-