Interface TrainedModelExportOutputConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TrainedModelExportOutputConfiguration.Builder,TrainedModelExportOutputConfiguration>,SdkBuilder<TrainedModelExportOutputConfiguration.Builder,TrainedModelExportOutputConfiguration>,SdkPojo
- Enclosing class:
- TrainedModelExportOutputConfiguration
public static interface TrainedModelExportOutputConfiguration.Builder extends SdkPojo, CopyableBuilder<TrainedModelExportOutputConfiguration.Builder,TrainedModelExportOutputConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrainedModelExportOutputConfiguration.Buildermembers(Collection<TrainedModelExportReceiverMember> members)The members that will received the exported trained model output.TrainedModelExportOutputConfiguration.Buildermembers(Consumer<TrainedModelExportReceiverMember.Builder>... members)The members that will received the exported trained model output.TrainedModelExportOutputConfiguration.Buildermembers(TrainedModelExportReceiverMember... members)The members that will received the exported trained model 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
-
members
TrainedModelExportOutputConfiguration.Builder members(Collection<TrainedModelExportReceiverMember> members)
The members that will received the exported trained model output.
- Parameters:
members- The members that will received the exported trained model output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
TrainedModelExportOutputConfiguration.Builder members(TrainedModelExportReceiverMember... members)
The members that will received the exported trained model output.
- Parameters:
members- The members that will received the exported trained model output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
members
TrainedModelExportOutputConfiguration.Builder members(Consumer<TrainedModelExportReceiverMember.Builder>... members)
The members that will received the exported trained model output.
This is a convenience method that creates an instance of theTrainedModelExportReceiverMember.Builderavoiding the need to create one manually viaTrainedModelExportReceiverMember.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 onTrainedModelExportReceiverMember.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#members(java.util.Collection)
-
-