Interface ReadSetFiles.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReadSetFiles.Builder,ReadSetFiles>,SdkBuilder<ReadSetFiles.Builder,ReadSetFiles>,SdkPojo
- Enclosing class:
- ReadSetFiles
public static interface ReadSetFiles.Builder extends SdkPojo, CopyableBuilder<ReadSetFiles.Builder,ReadSetFiles>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReadSetFiles.Builderindex(Consumer<FileInformation.Builder> index)The files' index.ReadSetFiles.Builderindex(FileInformation index)The files' index.default ReadSetFiles.Buildersource1(Consumer<FileInformation.Builder> source1)The location of the first file in Amazon S3.ReadSetFiles.Buildersource1(FileInformation source1)The location of the first file in Amazon S3.default ReadSetFiles.Buildersource2(Consumer<FileInformation.Builder> source2)The location of the second file in Amazon S3.ReadSetFiles.Buildersource2(FileInformation source2)The location of the second file in Amazon S3.-
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, sdkFields
-
-
-
-
Method Detail
-
source1
ReadSetFiles.Builder source1(FileInformation source1)
The location of the first file in Amazon S3.
- Parameters:
source1- The location of the first file in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source1
default ReadSetFiles.Builder source1(Consumer<FileInformation.Builder> source1)
The location of the first file in Amazon S3.
This is a convenience method that creates an instance of theFileInformation.Builderavoiding the need to create one manually viaFileInformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource1(FileInformation).- Parameters:
source1- a consumer that will call methods onFileInformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source1(FileInformation)
-
source2
ReadSetFiles.Builder source2(FileInformation source2)
The location of the second file in Amazon S3.
- Parameters:
source2- The location of the second file in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source2
default ReadSetFiles.Builder source2(Consumer<FileInformation.Builder> source2)
The location of the second file in Amazon S3.
This is a convenience method that creates an instance of theFileInformation.Builderavoiding the need to create one manually viaFileInformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource2(FileInformation).- Parameters:
source2- a consumer that will call methods onFileInformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source2(FileInformation)
-
index
ReadSetFiles.Builder index(FileInformation index)
The files' index.
- Parameters:
index- The files' index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
index
default ReadSetFiles.Builder index(Consumer<FileInformation.Builder> index)
The files' index.
This is a convenience method that creates an instance of theFileInformation.Builderavoiding the need to create one manually viaFileInformation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toindex(FileInformation).- Parameters:
index- a consumer that will call methods onFileInformation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
index(FileInformation)
-
-