Interface TableFieldCustomTextContent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableFieldCustomTextContent.Builder,TableFieldCustomTextContent>,SdkBuilder<TableFieldCustomTextContent.Builder,TableFieldCustomTextContent>,SdkPojo
- Enclosing class:
- TableFieldCustomTextContent
public static interface TableFieldCustomTextContent.Builder extends SdkPojo, CopyableBuilder<TableFieldCustomTextContent.Builder,TableFieldCustomTextContent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableFieldCustomTextContent.BuilderfontConfiguration(Consumer<FontConfiguration.Builder> fontConfiguration)The font configuration of the custom text content for the table URL link content.TableFieldCustomTextContent.BuilderfontConfiguration(FontConfiguration fontConfiguration)The font configuration of the custom text content for the table URL link content.TableFieldCustomTextContent.Buildervalue(String value)The string value of the custom text content for the table URL link content.-
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, sdkFields
-
-
-
-
Method Detail
-
value
TableFieldCustomTextContent.Builder value(String value)
The string value of the custom text content for the table URL link content.
- Parameters:
value- The string value of the custom text content for the table URL link content.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fontConfiguration
TableFieldCustomTextContent.Builder fontConfiguration(FontConfiguration fontConfiguration)
The font configuration of the custom text content for the table URL link content.
- Parameters:
fontConfiguration- The font configuration of the custom text content for the table URL link content.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fontConfiguration
default TableFieldCustomTextContent.Builder fontConfiguration(Consumer<FontConfiguration.Builder> fontConfiguration)
The font configuration of the custom text content for the table URL link content.
This is a convenience method that creates an instance of theFontConfiguration.Builderavoiding the need to create one manually viaFontConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofontConfiguration(FontConfiguration).- Parameters:
fontConfiguration- a consumer that will call methods onFontConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fontConfiguration(FontConfiguration)
-
-