Interface Sheet.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Sheet.Builder,
,Sheet> SdkBuilder<Sheet.Builder,
,Sheet> SdkPojo
- Enclosing class:
Sheet
@Mutable
@NotThreadSafe
public static interface Sheet.Builder
extends SdkPojo, CopyableBuilder<Sheet.Builder,Sheet>
-
Method Summary
Modifier and TypeMethodDescriptionimages
(Collection<SheetImage> images) A list of images on a sheet.images
(Consumer<SheetImage.Builder>... images) A list of images on a sheet.images
(SheetImage... images) A list of images on a sheet.The name of a sheet.The unique identifier associated with a sheet.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
-
sheetId
The unique identifier associated with a sheet.
- Parameters:
sheetId
- The unique identifier associated with a sheet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.
- Parameters:
name
- The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
A list of images on a sheet.
- Parameters:
images
- A list of images on a sheet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
A list of images on a sheet.
- Parameters:
images
- A list of images on a sheet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
A list of images on a sheet.
This is a convenience method that creates an instance of theSheetImage.Builder
avoiding the need to create one manually viaSheetImage.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toimages(List<SheetImage>)
.- Parameters:
images
- a consumer that will call methods onSheetImage.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-