Interface TextInputCardInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TextInputCardInput.Builder,TextInputCardInput>,SdkBuilder<TextInputCardInput.Builder,TextInputCardInput>,SdkPojo
- Enclosing class:
- TextInputCardInput
public static interface TextInputCardInput.Builder extends SdkPojo, CopyableBuilder<TextInputCardInput.Builder,TextInputCardInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextInputCardInput.BuilderdefaultValue(String defaultValue)The default value to pre-populate in the text input field.TextInputCardInput.Builderid(String id)The unique identifier of the text input card.TextInputCardInput.Builderplaceholder(String placeholder)The placeholder text to display in the text input field.TextInputCardInput.Buildertitle(String title)The title or label of the text input card.TextInputCardInput.Buildertype(String type)The type of the card.TextInputCardInput.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
-
title
TextInputCardInput.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.
-
id
TextInputCardInput.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.
-
type
TextInputCardInput.Builder type(String type)
The type of the card.
-
type
TextInputCardInput.Builder type(CardType type)
The type of the card.
-
placeholder
TextInputCardInput.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
TextInputCardInput.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.
-
-