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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Sheet.Builderimages(Collection<SheetImage> images)A list of images on a sheet.Sheet.Builderimages(Consumer<SheetImage.Builder>... images)A list of images on a sheet.Sheet.Builderimages(SheetImage... images)A list of images on a sheet.Sheet.Buildername(String name)The name of a sheet.Sheet.BuildersheetId(String sheetId)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 Detail
-
sheetId
Sheet.Builder sheetId(String 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
Sheet.Builder name(String name)
The name of a sheet. This name is displayed on the sheet's tab in the QuickSight console.
- Parameters:
name- The name of a sheet. This name is displayed on the sheet's tab in the QuickSight console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
Sheet.Builder images(Collection<SheetImage> 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
Sheet.Builder images(SheetImage... 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
Sheet.Builder images(Consumer<SheetImage.Builder>... images)
A list of images on a sheet.
This is a convenience method that creates an instance of theSheetImage.Builderavoiding the need to create one manually viaSheetImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#images(List.) - 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:
#images(java.util.Collection)
-
-