Interface SupplementalDataStorageConfiguration.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<SupplementalDataStorageConfiguration.Builder,,SupplementalDataStorageConfiguration> SdkBuilder<SupplementalDataStorageConfiguration.Builder,,SupplementalDataStorageConfiguration> SdkPojo
- Enclosing class:
 SupplementalDataStorageConfiguration
@Mutable
@NotThreadSafe
public static interface SupplementalDataStorageConfiguration.Builder
extends SdkPojo, CopyableBuilder<SupplementalDataStorageConfiguration.Builder,SupplementalDataStorageConfiguration> 
- 
Method Summary
Modifier and TypeMethodDescriptionstorageLocations(Collection<SupplementalDataStorageLocation> storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.storageLocations(Consumer<SupplementalDataStorageLocation.Builder>... storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.storageLocations(SupplementalDataStorageLocation... storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
storageLocations
SupplementalDataStorageConfiguration.Builder storageLocations(Collection<SupplementalDataStorageLocation> storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.
- Parameters:
 storageLocations- A list of objects specifying storage locations for images extracted from multimodal documents in your data source.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
storageLocations
SupplementalDataStorageConfiguration.Builder storageLocations(SupplementalDataStorageLocation... storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.
- Parameters:
 storageLocations- A list of objects specifying storage locations for images extracted from multimodal documents in your data source.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
storageLocations
SupplementalDataStorageConfiguration.Builder storageLocations(Consumer<SupplementalDataStorageLocation.Builder>... storageLocations) A list of objects specifying storage locations for images extracted from multimodal documents in your data source.
This is a convenience method that creates an instance of theSupplementalDataStorageLocation.Builderavoiding the need to create one manually viaSupplementalDataStorageLocation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostorageLocations(List<SupplementalDataStorageLocation>).- Parameters:
 storageLocations- a consumer that will call methods onSupplementalDataStorageLocation.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -