Interface SheetImageSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SheetImageSource.Builder,SheetImageSource>,SdkBuilder<SheetImageSource.Builder,SheetImageSource>,SdkPojo
- Enclosing class:
- SheetImageSource
@Mutable @NotThreadSafe public static interface SheetImageSource.Builder extends SdkPojo, CopyableBuilder<SheetImageSource.Builder,SheetImageSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SheetImageSource.BuildersheetImageStaticFileSource(Consumer<SheetImageStaticFileSource.Builder> sheetImageStaticFileSource)The source of the static file that contains the image.SheetImageSource.BuildersheetImageStaticFileSource(SheetImageStaticFileSource sheetImageStaticFileSource)The source of the static file that contains the image.-
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
-
sheetImageStaticFileSource
SheetImageSource.Builder sheetImageStaticFileSource(SheetImageStaticFileSource sheetImageStaticFileSource)
The source of the static file that contains the image.
- Parameters:
sheetImageStaticFileSource- The source of the static file that contains the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sheetImageStaticFileSource
default SheetImageSource.Builder sheetImageStaticFileSource(Consumer<SheetImageStaticFileSource.Builder> sheetImageStaticFileSource)
The source of the static file that contains the image.
This is a convenience method that creates an instance of theSheetImageStaticFileSource.Builderavoiding the need to create one manually viaSheetImageStaticFileSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosheetImageStaticFileSource(SheetImageStaticFileSource).- Parameters:
sheetImageStaticFileSource- a consumer that will call methods onSheetImageStaticFileSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sheetImageStaticFileSource(SheetImageStaticFileSource)
-
-