Interface CategoryInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoryInput.Builder,CategoryInput>,SdkBuilder<CategoryInput.Builder,CategoryInput>,SdkPojo
- Enclosing class:
- CategoryInput
public static interface CategoryInput.Builder extends SdkPojo, CopyableBuilder<CategoryInput.Builder,CategoryInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategoryInput.Buildercolor(String color)The color of the category, represented as a hexadecimal value of either 3 or 6 digits.CategoryInput.Builderid(String id)The unique identifier of the category.CategoryInput.Buildertitle(String title)The name of the category.-
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
-
id
CategoryInput.Builder id(String id)
The unique identifier of the category.
- Parameters:
id- The unique identifier of the category.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
CategoryInput.Builder title(String title)
The name of the category.
- Parameters:
title- The name of the category.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
color
CategoryInput.Builder color(String color)
The color of the category, represented as a hexadecimal value of either 3 or 6 digits.
- Parameters:
color- The color of the category, represented as a hexadecimal value of either 3 or 6 digits.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-