Interface TableFieldURLConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableFieldURLConfiguration.Builder,TableFieldURLConfiguration>,SdkBuilder<TableFieldURLConfiguration.Builder,TableFieldURLConfiguration>,SdkPojo
- Enclosing class:
- TableFieldURLConfiguration
@Mutable @NotThreadSafe public static interface TableFieldURLConfiguration.Builder extends SdkPojo, CopyableBuilder<TableFieldURLConfiguration.Builder,TableFieldURLConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableFieldURLConfiguration.BuilderimageConfiguration(Consumer<TableFieldImageConfiguration.Builder> imageConfiguration)The image configuration of a table field URL.TableFieldURLConfiguration.BuilderimageConfiguration(TableFieldImageConfiguration imageConfiguration)The image configuration of a table field URL.default TableFieldURLConfiguration.BuilderlinkConfiguration(Consumer<TableFieldLinkConfiguration.Builder> linkConfiguration)The link configuration of a table field URL.TableFieldURLConfiguration.BuilderlinkConfiguration(TableFieldLinkConfiguration linkConfiguration)The link configuration of a table field URL.-
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
-
linkConfiguration
TableFieldURLConfiguration.Builder linkConfiguration(TableFieldLinkConfiguration linkConfiguration)
The link configuration of a table field URL.
- Parameters:
linkConfiguration- The link configuration of a table field URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
linkConfiguration
default TableFieldURLConfiguration.Builder linkConfiguration(Consumer<TableFieldLinkConfiguration.Builder> linkConfiguration)
The link configuration of a table field URL.
This is a convenience method that creates an instance of theTableFieldLinkConfiguration.Builderavoiding the need to create one manually viaTableFieldLinkConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolinkConfiguration(TableFieldLinkConfiguration).- Parameters:
linkConfiguration- a consumer that will call methods onTableFieldLinkConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
linkConfiguration(TableFieldLinkConfiguration)
-
imageConfiguration
TableFieldURLConfiguration.Builder imageConfiguration(TableFieldImageConfiguration imageConfiguration)
The image configuration of a table field URL.
- Parameters:
imageConfiguration- The image configuration of a table field URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageConfiguration
default TableFieldURLConfiguration.Builder imageConfiguration(Consumer<TableFieldImageConfiguration.Builder> imageConfiguration)
The image configuration of a table field URL.
This is a convenience method that creates an instance of theTableFieldImageConfiguration.Builderavoiding the need to create one manually viaTableFieldImageConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toimageConfiguration(TableFieldImageConfiguration).- Parameters:
imageConfiguration- a consumer that will call methods onTableFieldImageConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
imageConfiguration(TableFieldImageConfiguration)
-
-