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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SupplementalDataStorageConfiguration.BuilderstorageLocations(Collection<SupplementalDataStorageLocation> storageLocations)A list of objects specifying storage locations for images extracted from multimodal documents in your data source.SupplementalDataStorageConfiguration.BuilderstorageLocations(Consumer<SupplementalDataStorageLocation.Builder>... storageLocations)A list of objects specifying storage locations for images extracted from multimodal documents in your data source.SupplementalDataStorageConfiguration.BuilderstorageLocations(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
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
-
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 to#storageLocations(List.) - 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:
#storageLocations(java.util.Collection)
-
-