Interface TrainedModelExportsConfigurationPolicy.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TrainedModelExportsConfigurationPolicy.Builder,
,TrainedModelExportsConfigurationPolicy> SdkBuilder<TrainedModelExportsConfigurationPolicy.Builder,
,TrainedModelExportsConfigurationPolicy> SdkPojo
- Enclosing class:
TrainedModelExportsConfigurationPolicy
@Mutable
@NotThreadSafe
public static interface TrainedModelExportsConfigurationPolicy.Builder
extends SdkPojo, CopyableBuilder<TrainedModelExportsConfigurationPolicy.Builder,TrainedModelExportsConfigurationPolicy>
-
Method Summary
Modifier and TypeMethodDescriptionfilesToExport
(Collection<TrainedModelExportFileType> filesToExport) The files that are exported during the trained model export job.filesToExport
(TrainedModelExportFileType... filesToExport) The files that are exported during the trained model export job.filesToExportWithStrings
(String... filesToExport) The files that are exported during the trained model export job.filesToExportWithStrings
(Collection<String> filesToExport) The files that are exported during the trained model export job.The maximum size of the data that can be exported.maxSize
(TrainedModelExportsMaxSize maxSize) The maximum size of the data that can be exported.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
-
maxSize
The maximum size of the data that can be exported.
- Parameters:
maxSize
- The maximum size of the data that can be exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxSize
default TrainedModelExportsConfigurationPolicy.Builder maxSize(Consumer<TrainedModelExportsMaxSize.Builder> maxSize) The maximum size of the data that can be exported.
This is a convenience method that creates an instance of theTrainedModelExportsMaxSize.Builder
avoiding the need to create one manually viaTrainedModelExportsMaxSize.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomaxSize(TrainedModelExportsMaxSize)
.- Parameters:
maxSize
- a consumer that will call methods onTrainedModelExportsMaxSize.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
filesToExportWithStrings
TrainedModelExportsConfigurationPolicy.Builder filesToExportWithStrings(Collection<String> filesToExport) The files that are exported during the trained model export job.
- Parameters:
filesToExport
- The files that are exported during the trained model export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filesToExportWithStrings
The files that are exported during the trained model export job.
- Parameters:
filesToExport
- The files that are exported during the trained model export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filesToExport
TrainedModelExportsConfigurationPolicy.Builder filesToExport(Collection<TrainedModelExportFileType> filesToExport) The files that are exported during the trained model export job.
- Parameters:
filesToExport
- The files that are exported during the trained model export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filesToExport
TrainedModelExportsConfigurationPolicy.Builder filesToExport(TrainedModelExportFileType... filesToExport) The files that are exported during the trained model export job.
- Parameters:
filesToExport
- The files that are exported during the trained model export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-