Interface CardValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CardValue.Builder,CardValue>,SdkBuilder<CardValue.Builder,CardValue>,SdkPojo
- Enclosing class:
- CardValue
public static interface CardValue.Builder extends SdkPojo, CopyableBuilder<CardValue.Builder,CardValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CardValue.BuildercardId(String cardId)The unique identifier of the card.CardValue.Buildervalue(String value)The value or result associated with 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
-
cardId
CardValue.Builder cardId(String cardId)
The unique identifier of the card.
- Parameters:
cardId- The unique identifier of the card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CardValue.Builder value(String value)
The value or result associated with the card.
- Parameters:
value- The value or result associated with the card.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-