Interface CascadingControlSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CascadingControlSource.Builder,CascadingControlSource>,SdkBuilder<CascadingControlSource.Builder,CascadingControlSource>,SdkPojo
- Enclosing class:
- CascadingControlSource
@Mutable @NotThreadSafe public static interface CascadingControlSource.Builder extends SdkPojo, CopyableBuilder<CascadingControlSource.Builder,CascadingControlSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CascadingControlSource.BuildercolumnToMatch(Consumer<ColumnIdentifier.Builder> columnToMatch)The column identifier that determines which column to look up for the source sheet control.CascadingControlSource.BuildercolumnToMatch(ColumnIdentifier columnToMatch)The column identifier that determines which column to look up for the source sheet control.CascadingControlSource.BuildersourceSheetControlId(String sourceSheetControlId)The source sheet control ID of aCascadingControlSource.-
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
-
sourceSheetControlId
CascadingControlSource.Builder sourceSheetControlId(String sourceSheetControlId)
The source sheet control ID of a
CascadingControlSource.- Parameters:
sourceSheetControlId- The source sheet control ID of aCascadingControlSource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnToMatch
CascadingControlSource.Builder columnToMatch(ColumnIdentifier columnToMatch)
The column identifier that determines which column to look up for the source sheet control.
- Parameters:
columnToMatch- The column identifier that determines which column to look up for the source sheet control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnToMatch
default CascadingControlSource.Builder columnToMatch(Consumer<ColumnIdentifier.Builder> columnToMatch)
The column identifier that determines which column to look up for the source sheet control.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumnToMatch(ColumnIdentifier).- Parameters:
columnToMatch- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
columnToMatch(ColumnIdentifier)
-
-