Interface TextInputCard.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TextInputCard.Builder,TextInputCard>,SdkBuilder<TextInputCard.Builder,TextInputCard>,SdkPojo
- Enclosing class:
- TextInputCard
public static interface TextInputCard.Builder extends SdkPojo, CopyableBuilder<TextInputCard.Builder,TextInputCard>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextInputCard.BuilderdefaultValue(String defaultValue)The default value to pre-populate in the text input field.TextInputCard.Builderdependencies(String... dependencies)Any dependencies or requirements for the text input card.TextInputCard.Builderdependencies(Collection<String> dependencies)Any dependencies or requirements for the text input card.TextInputCard.Builderid(String id)The unique identifier of the text input card.TextInputCard.Builderplaceholder(String placeholder)The placeholder text to display in the text input field.TextInputCard.Buildertitle(String title)The title or label of the text input card.TextInputCard.Buildertype(String type)The type of the card.TextInputCard.Buildertype(CardType type)The type of the card.-
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
-
id
TextInputCard.Builder id(String id)
The unique identifier of the text input card.
- Parameters:
id- The unique identifier of the text input card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
TextInputCard.Builder title(String title)
The title or label of the text input card.
- Parameters:
title- The title or label of the text input card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependencies
TextInputCard.Builder dependencies(Collection<String> dependencies)
Any dependencies or requirements for the text input card.
- Parameters:
dependencies- Any dependencies or requirements for the text input card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependencies
TextInputCard.Builder dependencies(String... dependencies)
Any dependencies or requirements for the text input card.
- Parameters:
dependencies- Any dependencies or requirements for the text input card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
TextInputCard.Builder type(String type)
The type of the card.
-
type
TextInputCard.Builder type(CardType type)
The type of the card.
-
placeholder
TextInputCard.Builder placeholder(String placeholder)
The placeholder text to display in the text input field.
- Parameters:
placeholder- The placeholder text to display in the text input field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
TextInputCard.Builder defaultValue(String defaultValue)
The default value to pre-populate in the text input field.
- Parameters:
defaultValue- The default value to pre-populate in the text input field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-